body.home {
  background-color: var(--color-background);
}

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

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

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

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

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  font-size: var(--font-size-sm);
}

.home-hero__link {
  color: var(--color-primary-strong);
}

.home-hero__status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0%, #16a34a 65%, #15803d 100%);
}

.home-hero__media {
  justify-self: center;
}

.home-hero__image-figure {
  max-width: 26rem;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-hero__image {
  width: 100%;
  height: auto;
}

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

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

.home-section--process .home-section__content,
.home-section--facilities .home-section__content {
  align-self: center;
}

.home-section__media {
  align-self: stretch;
}

.home-image-card {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.home-list {
  margin: var(--space-4) 0;
  padding-left: 1.25rem;
  color: var(--color-text);
}

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

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

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

.home-section__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

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

.home-price-highlight {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: var(--space-4);
}

.home-card-footer--split {
  justify-content: space-between;
}

.home-section--how-it-works {
  align-items: flex-start;
  gap: var(--space-10);
}

.home-steps {
  list-style: none;
  padding-left: 0;
  margin: var(--space-4) 0 0;
}

.home-steps li + li {
  margin-top: var(--space-4);
}

.home-steps h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.home-highlight-card {
  height: 100%;
}

.home-section--testimonials-faq {
  align-items: flex-start;
  gap: var(--space-10);
}

.home-testimonials {
  display: grid;
  gap: var(--space-4);
}

.home-testimonial__meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.home-faq__item {
  margin-bottom: var(--space-3);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-sm);
}

.home-faq__item summary {
  cursor: pointer;
  font-weight: var(--font-weight-medium);
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "+";
  float: right;
  font-weight: var(--font-weight-bold);
}

.home-faq__item[open] summary::after {
  content: "–";
}

.home-faq__item p {
  margin-top: var(--space-2);
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.home-section--contact {
  max-width: 72rem;
}

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

.home-contact-card {
  height: 100%;
}

.home-newsletter-form__row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) auto;
  gap: var(--space-3);
  align-items: center;
}

.home-newsletter-form .form-help {
  margin-top: var(--space-2);
}

@media (max-width: 1024px) {
  .home-hero {
    padding-top: var(--space-12);
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
  }

  .home-hero__media {
    order: -1;
  }

  .home-hero__image-figure {
    max-width: 22rem;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding-top: var(--space-10);
    padding-bottom: var(--space-8);
  }

  .home-hero__lead {
    font-size: var(--font-size-base);
  }

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

  .home-hero__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-section__header,
  .home-section__intro {
    text-align: left;
  }

  .home-newsletter-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-hero__image-figure {
    max-width: 18rem;
  }
}
