.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;
}

.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: var(--color-white);
}

.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 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 36px;
}

.dp-cto-investigation-card {
  display: flex;
  min-height: 266px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px 24px 24px;
  border: 1px solid #f9f5f5;
  border-radius: 12px;
  background: linear-gradient(0deg, #ffffff 28%, #f5f7f9 100%);
  box-shadow: none;
}

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

.dp-cto-investigation-card p {
  margin: 12px 0 32px;
  color: var(--color-gray-950);
  font-size: 16px;
  line-height: 24px;
}

.dp-cto-investigation-card__signal {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 16px 16px 15px;
  border: 1px solid;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.dp-cto-investigation-card__signal--green {
  border-color: #f0fbf6;
  background: linear-gradient(70deg, #ffffff 8%, #f6fff7 109%);
  color: #1d7c4d;
}

.dp-cto-investigation-card__signal--purple {
  border-color: #f4f1ff;
  background: linear-gradient(70deg, #ffffff 8%, #f5f3ff 109%);
  color: #5e54fd;
}

.dp-cto-investigation__recommendation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 461px;
  gap: 48px;
  align-items: center;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--color-white);
  border-radius: 12px;
  background: #ebf5ff;
  box-shadow: none;
}

.dp-cto-investigation__label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.dp-cto-investigation__label img {
  display: block;
  width: 14px;
  height: 16px;
}

.dp-cto-investigation__recommendation h3 {
  margin: 0;
  color: var(--color-gray-950);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

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

@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,
  .dp-cto-investigation__cards {
    grid-template-columns: 1fr;
  }

  .dp-cto-investigation__recommendation {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@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;
  }
}
