.hero-layout {
  align-items: center;
}
.hero-text {
  max-width: 34rem;
}
.hero-actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.services-grid .service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-4);
}
.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workflow-steps {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  counter-reset: step-counter;
}
.workflow-steps li {
  counter-increment: step-counter;
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: var(--space-4);
}
.workflow-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-sm);
}
.workflow-steps h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}
.packages-grid-inner {
  align-items: stretch;
}
.benefits-card ul {
  margin-top: var(--space-2);
}
.portfolio-layout {
  align-items: center;
  gap: var(--space-8);
}
.trust-layout {
  max-width: var(--container-max-width);
}
.testimonials-grid .card {
  height: 100%;
}
@media (max-width: 768px) {
  .hero {
    text-align: left;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .portfolio-layout {
    gap: var(--space-6);
  }
}
