.service-comparison {
  display: flex;
  flex-direction: column;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 0;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease-out forwards;
}

.service-card + .service-card {
  border-top: 1px solid var(--border);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card-name {
  font-family: 'Source Serif 4', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-900);
  margin: 0;
}

.service-card-logo {
  max-width: 150px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-card-info {
  min-width: 0;
}

.service-card-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.service-card-cta {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--green-500);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 0.3rem;
}

.service-card-cta:hover {
  background: var(--green-700);
}

@media (max-width: 600px) {
  .service-card {
    gap: 0.3rem;
    padding: 0.8rem 0;
  }

  .service-card-logo {
    max-width: 120px;
  }
}
