.values-hero {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.32), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.9), #020617);
}

.values-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: var(--space-10);
  align-items: center;
}

.values-hero-copy p {
  max-width: 40rem;
}

.values-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.values-hero-meta {
  display: flex;
  justify-content: flex-end;
}

.values-hero-card {
  max-width: 24rem;
}

.values-hero-list {
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.values-hero-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
  margin-right: 0.5rem;
}

.values-hero-list li {
  display: flex;
  align-items: flex-start;
}

.values-hero-list li span {
  flex: 1;
}

.values-section-header {
  max-width: 46rem;
}

.values-section-intro {
  color: var(--color-text-muted);
}

.values-grid {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.values-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.values-item .card-body {
  margin-top: auto;
}

.values-bullets {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.values-bullets li {
  position: relative;
  padding-left: 1.25rem;
}

.values-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.7);
}

.values-inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.values-inline-link::after {
  content: "";
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 0.4rem;
}

.values-item-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: var(--space-4);
  align-items: stretch;
}

.values-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.values-item-content {
  display: flex;
  flex-direction: column;
}

.values-cta-strip {
  border-top: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.18), transparent 55%),
    var(--color-surface-alt);
}

.values-cta-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

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

.values-cta-text p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

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

@media (max-width: 960px) {
  .values-hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .values-hero-meta {
    justify-content: flex-start;
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .values-item-with-media {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .values-hero-ctas,
  .values-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .values-hero-card {
    max-width: 100%;
  }
}
