section.section--home-hero {
  background: radial-gradient(circle at top left, var(--color-primary-soft), #ffffff 45%);
}

.hero__layout {
  align-items: center;
  gap: var(--space-8);
}

.hero__content {
  max-width: 36rem;
}

.hero-image-wrapper,
.image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image-wrapper img,
.image-card img {
  width: 100%;
  height: auto;
}

.section-heading {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.service-cards .card ul,
.pricing-grid .card ul,
.team-grid .card ul,
.insights-grid .card ul {
  margin-top: var(--space-3);
}

.bullet-list {
  list-style-type: disc;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.bullet-list li + li {
  margin-top: 0.35rem;
}

.pricing-grid .card {
  position: relative;
}

.popular-plan {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-soft);
}

.pricing-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.testimonial-card .quote {
  margin-bottom: var(--space-2);
}

.home-contact-form .form-field:last-of-type {
  margin-bottom: var(--space-3);
}

.contact-layout {
  align-items: flex-start;
  gap: var(--space-8);
}

.team-layout,
.why-layout {
  align-items: center;
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .hero__layout,
  .team-layout,
  .why-layout,
  .contact-layout {
    gap: var(--space-6);
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
