/* Services page specific styling.
   Shared layout tokens, callouts, typography, and section rhythm live in styles/site.css. */

.services-main {
  padding-bottom: 56px;
}

.section-accent {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: rgba(59, 108, 255, 0.62);
  margin: 12px 0 28px 0;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}

/* Premium off-white service card with elevated interaction depth. */
.service-card {
  background: var(--surface-color, #f6f7f8);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.service-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.service-header-row h3 {
  margin: 0;
  font-size: 24px;
  color: var(--text-primary);
}

/* Blend logo whites into off-white card surfaces for cleaner visual integration. */
.service-icon {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}

.service-card p {
  max-width: none;
  margin: 0;
}

.label {
  margin-top: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  font-weight: 600;
  color: var(--accent-blue);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-outcome {
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-header-row {
    gap: 16px;
  }

  .service-header-row h3 {
    font-size: 22px;
  }

}
