.services-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.services-hero h1 {
  font-size: 46px;
}

.service-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding: 2rem;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.service-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-visual {
  font-size: 48px;
  text-align: center;
}

.service-content h2 {
  margin: 0;
}

.tag {
  display: inline-block;
  margin-top: .4rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.tag.included { background:#2ecc71; color:#000; }
.tag.paid { background:#f1c40f; color:#000; }
.tag.commission { background:#9b59b6; color:#fff; }

.service-content ul {
  margin-top: .8rem;
  padding-left: 1.2rem;
}

.faq-cinematic {
  margin-top: 5rem;
  background: rgba(255,255,255,0.03);
  padding: 3rem;
  border-radius: 24px;
}

.faq-row {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease;
}

.faq-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.final-cta {
  margin-top: 5rem;
  text-align: center;
}

@media(max-width:900px){
  .service-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
