.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-text {
  max-width: 40rem;
}

.hero-media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto var(--space-6);
}

.solutions-grid .solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-list {
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
  padding-left: var(--space-4);
  list-style: disc;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.solution-image {
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.process-layout {
  display: flex;
  justify-content: center;
}

.process-text {
  max-width: 52rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.process-steps h3 {
  margin-bottom: var(--space-1);
}

.process-cta,
.why-cta,
.final-cta-actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.problems-grid .problem-card {
  height: 100%;
}

.why-layout {
  display: flex;
  justify-content: center;
}

.why-text {
  max-width: 60rem;
}

.final-cta {
  background-color: var(--gray-900);
  color: #ffffff;
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta .text-muted {
  color: var(--gray-300);
}

.final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    max-width: 24rem;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding-block: var(--space-8);
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
