.home-hero {
  padding-top: var(--space-16);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: var(--space-10);
  align-items: center;
}

.home-hero__content {
  max-width: 36rem;
}

.home-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.home-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-hero__subnote {
  font-size: var(--font-size-sm);
}

.home-hero__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 55%), #020617;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-section-header {
  max-width: 44rem;
  margin-bottom: var(--space-8);
}

.home-section-header__subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.home-benefits-grid .card,
.home-services-grid .card,
.home-testimonials-grid .card {
  height: 100%;
}

.home-benefits-footer {
  border-top: 1px solid var(--border-color-soft);
  padding-top: var(--space-4);
}

.home-process-grid {
  align-items: center;
  gap: var(--space-8);
}

.home-process-media {
  max-width: 32rem;
  justify-self: center;
}

.home-process-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.home-process-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: var(--space-8);
  align-items: flex-start;
}

.home-quote-list {
  margin-top: var(--space-4);
}

.home-quote-list li + li {
  margin-top: var(--space-2);
}

.home-quote-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: var(--space-8);
  align-items: center;
}

.home-gallery-list {
  margin-top: var(--space-4);
}

.home-gallery-list li + li {
  margin-top: var(--space-2);
}

.home-gallery-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.home-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-testimonials-grid {
  align-items: stretch;
}

.home-case-study-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: var(--space-8);
}

.home-case-list li + li,
.home-case-metrics li + li {
  margin-top: var(--space-2);
}

.home-case-highlight {
  align-self: flex-start;
}

.home-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: var(--space-8);
  align-items: stretch;
}

.home-why-list li + li {
  margin-top: var(--space-2);
}

.home-why-band {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: var(--space-8);
}

.home-about-list li + li,
.home-about-steps li + li {
  margin-top: var(--space-2);
}

.home-about-side__title {
  margin-bottom: var(--space-3);
}

.home-cta {
  padding-bottom: var(--space-16);
}

.home-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: var(--space-8);
  align-items: center;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-cta-list {
  margin-top: var(--space-2);
}

.home-cta-list li + li {
  margin-top: var(--space-1);
}

@media (max-width: 992px) {
  .home-hero__grid,
  .home-quote-grid,
  .home-gallery-grid,
  .home-case-study-grid,
  .home-why-grid,
  .home-about-grid,
  .home-cta-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero {
    padding-top: var(--space-12);
  }

  .home-hero__content {
    max-width: 100%;
  }

  .home-process-media,
  .home-gallery-figure {
    max-width: 28rem;
  }
}

@media (max-width: 640px) {
  .home-hero__cta-group,
  .home-cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-section-header {
    margin-bottom: var(--space-6);
  }
}
