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

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

.hero-media {
  max-width: 28rem;
  justify-self: flex-end;
}

.hero-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.concept-section-grid {
  gap: var(--space-32);
  align-items: flex-start;
}

.concept-section-reverse {
  direction: rtl;
}

.concept-section-reverse > * {
  direction: ltr;
}

.concept-media {
  max-width: 30rem;
}

.concept-cards-grid {
  align-items: stretch;
}

.final-cta {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

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

  .hero-media {
    order: -1;
    justify-self: center;
  }

  .concept-section-grid,
  .concept-section-reverse {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .concept-media {
    order: -1;
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .hero-text {
    max-width: 100%;
  }

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