/* ── Services — Clean columns with dividers ── */
.services {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

/* ── Each column ── */
.service-col {
  padding: 2rem 2.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.service-col:first-child {
  border-left: none;
  padding-left: 0;
}

.service-col:last-child {
  padding-right: 0;
}

/* ── Tier label ── */
.service-col-tier {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.service-col:nth-child(2) .service-col-tier {
  color: var(--accent-cyan);
}

/* ── Title ── */
.service-col h3 {
  font-weight: var(--fw-bold);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* ── Description ── */
.service-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Feature list ── */
.service-col-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.service-col-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-col-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-purple);
  flex-shrink: 0;
}

.service-col:nth-child(2) .service-col-features li::before {
  background: var(--accent-cyan);
}

/* ── Shared CTA ── */
.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-purple);
  margin-top: 2.5rem;
  transition: gap 0.3s;
}

.services-cta:hover {
  gap: 0.7rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-col {
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem 0;
    text-align: center;
    align-items: center;
  }

  .service-col:first-child {
    padding-top: 0;
  }

  .service-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .service-col-features {
    align-items: center;
  }
}
