/* ═══════════════════════════════════════════════════════
   Infinity Binary — Services Page Stylesheet
   Hero · Services Grid · CTA Banner variant · Responsive
   ═══════════════════════════════════════════════════════ */

/* ── 1. Services Hero ── */
.services-hero {
  background: var(--ink-section);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.services-hero > .container {
  position: relative;
  z-index: 1;
}

/* ── 2. Services Grid ── */
.services-section {
  background: var(--off-white);
  padding: clamp(60px, 8vw, 100px) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 28px;
  border: 2px solid var(--ink);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 150ms ease;
}

.service-card:hover {
  transform: translate(-4px,-4px);
  box-shadow: 8px 8px 0 var(--ink);
}

.srv-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
}

.srv-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.srv-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ink);
}

.srv-category {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  border-radius: 100px;
  padding: 4px 12px;
  border: 1.5px solid;
}

.srv-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 1.25rem;
}

.srv-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-top: 0.75rem;
}

.srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.25rem;
}

.srv-tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: var(--ink-section);
  color: rgba(255,255,255,0.65);
  border-radius: 4px;
  padding: 4px 10px;
}

.srv-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1.5px solid rgba(0,0,0,0.08);
}

.srv-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 200ms;
}

.srv-cta:hover {
  color: var(--lime-dark);
}

.srv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ── 3. CTA Banner variant ── */
.cta-banner.lime-bg {
  background: var(--lime-bg);
  border-color: transparent;
}

/* ── Responsive: Services ── */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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