.services-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-kicker {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9cb0ff;
  margin: 0;
}

.services-intro {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.services-card {
  background: #141414;
  border: 1px solid #2f2f2f;
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 6px 6px rgba(20, 20, 20, 0.6);
}

.services-card-media {
  border-radius: 12px;
  height: 160px;
  background: radial-gradient(circle at 25% 25%, rgba(124, 91, 255, 0.4), rgba(76, 112, 255, 0.25), rgba(20, 20, 20, 0.9));
  border: 1px solid #262626;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.services-card-content > p {
  margin: 0 0 0.75rem;
  color: #bbbbbb;
  line-height: 1.6;
}

.services-card-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #bfbfbf;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.services-card-list li {
  line-height: 1.5;
}

.services-engagement {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.services-engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.services-engagement-card {
  background: #141414;
  border: 1px solid #2f2f2f;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #cfcfcf;
  line-height: 1.6;
}

.services-engagement-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #ffffff;
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) auto;
  align-items: center;
  column-gap: 2rem;
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid #2f2f2f;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(108, 97, 255, 0.18), rgba(26, 26, 26, 0.95));
}

.services-cta-copy h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.services-cta-copy p {
  margin: 0;
  color: #d6d6d6;
  line-height: 1.6;
}

.services-cta-button {
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
}

.services-cta-secondary {
  color: #9cb0ff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.services-cta-secondary:hover,
.services-cta-secondary:focus {
  text-decoration: underline;
  color: #c7d1ff;
}

@media (max-width: 799px) {
  .services-header {
    gap: 0.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-card {
    padding: 1.5rem;
  }

  .services-card-media {
    height: 140px;
  }

  .services-cta {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .services-cta-button {
    width: 100%;
    text-align: center;
  }
}
