.dp-cto-hero {
  background: var(--color-white);
}

.dp-cto-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.dp-cto-hero__copy {
  flex: 0 1 500px;
  max-width: 500px;
}

.dp-cto-hero__copy .eyebrow {
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: 1px;
}

.dp-cto-hero__title {
  margin: 0;
  color: var(--color-gray-950);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -2px;
}

.dp-cto-hero__description {
  margin: 16px 0 0;
  color: var(--color-gray-950);
  font-size: 14px;
  line-height: 20px;
}

.dp-cto-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.dp-cto-hero__visual {
  flex: 0 0 660px;
  max-width: 660px;
  margin: 0;
}

.dp-cto-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.dp-cto-questions {
  padding: 0 0 80px;
  background: var(--color-white);
}

.dp-cto-questions__title {
  margin: 0;
  max-width: 502px;
  color: var(--color-gray-950);
  font-size: 44px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -1.2px;
}

.dp-cto-questions__description {
  max-width: 547px;
  margin: 20px 0 40px;
  color: #3a424a;
  font-size: 16px;
  line-height: 24px;
}

.dp-cto-questions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dp-cto-questions-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px;
  border-radius: 12px;
  background: var(--color-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.dp-cto-questions-card__icon {
  width: 32px;
  height: 32px;
}

.dp-cto-questions-card h3 {
  margin: 0;
  color: var(--color-gray-950);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.dp-cto-questions-card p {
  margin: 0;
  color: #555f6d;
  font-size: 16px;
  line-height: 24px;
}

.dp-cto-investigation {
  padding: 80px 0 100px;
  background: #fefeff;
}

.dp-cto-investigation__header {
  margin-bottom: 40px;
  text-align: center;
}

.dp-cto-investigation__title {
  margin: 0;
  color: var(--color-gray-950);
  font-size: 44px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -1.2px;
}

.dp-cto-investigation__description {
  max-width: 734px;
  margin: 12px auto 0;
  color: var(--color-gray-950);
  font-size: 16px;
  line-height: 24px;
}

.dp-cto-investigation__cards {
  margin: 0 auto 36px;
}

.dp-cto-investigation__cards img,
.dp-cto-investigation__recommendation img {
  display: block;
  width: 100%;
  height: auto;
}

.dp-cto-investigation__recommendation {
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .dp-cto-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dp-cto-hero__copy,
  .dp-cto-hero__visual {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .dp-cto-questions__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dp-cto-hero__title,
  .dp-cto-questions__title,
  .dp-cto-investigation__title {
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1.2;
  }
}
