.hero-statement {
  position: relative;
}

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

.hero-statement-text h1 {
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.hero-statement-lead {
  font-size: var(--font-size-lg);
  max-width: 34rem;
}

.hero-statement-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
}

.hero-statement-disclaimer {
  margin-top: var(--space-4);
  max-width: 40rem;
}

.hero-statement-visual {
  max-width: 480px;
  justify-self: center;
}

.hero-statement-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.section-statement-grid {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

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

.statement-grid {
  margin-bottom: var(--space-12);
}

.statement-item h3 {
  margin-bottom: var(--space-3);
}

.statement-contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.statement-email-link {
  font-size: var(--font-size-sm);
  color: var(--color-gray-300);
}

.statement-email-link:hover {
  color: var(--color-primary);
}

.statement-company {
  margin-top: var(--space-4);
}

.statement-company-inner {
  display: grid;
  gap: var(--space-4);
}

.statement-company h3 {
  margin-bottom: var(--space-2);
}

.statement-company-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  font-size: var(--font-size-sm);
}

.statement-company-list dt {
  font-weight: 600;
  color: var(--color-gray-200);
  margin-bottom: var(--space-1);
}

.statement-company-list dd {
  margin: 0;
  color: var(--color-gray-400);
}

.statement-company-note {
  font-size: var(--font-size-sm);
  color: var(--color-gray-400);
  margin-top: var(--space-2);
}

.section-statement-cta {
  padding-top: var(--space-8);
  padding-bottom: var(--space-16);
}

.section-statement-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.section-statement-cta-text {
  max-width: 40rem;
}

.section-statement-cta-text h2 {
  margin-bottom: var(--space-3);
}

.section-statement-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

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

  .hero-statement-visual {
    order: -1;
  }

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

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

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

  .section-statement-cta {
    padding-top: var(--space-6);
    padding-bottom: var(--space-12);
  }
}
