.sales-cta {
  padding: 0 1.25rem 6rem;
  background: var(--color-background);
}

.sales-cta__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2rem;
  color: var(--color-primary-foreground);
  background:
    radial-gradient(circle at 95% 15%, rgb(255 255 255 / 18%), transparent 30%),
    var(--color-primary);
  box-shadow: 0 22px 55px rgb(60 33 88 / 18%);
}

.sales-cta__eyebrow,
.team-section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sales-cta__title {
  max-width: 42rem;
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12;
}

.sales-cta__text {
  max-width: 42rem;
  margin-top: 0.8rem;
  color: rgb(255 255 255 / 82%);
  line-height: 1.65;
}

.sales-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sales-cta__button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.sales-cta__button:hover,
.sales-cta__button:focus-visible {
  transform: translateY(-2px);
}

.sales-cta__button--primary {
  border-color: white;
  color: var(--color-primary);
  background: white;
}

.team-section {
  padding: 6rem 0;
  background: var(--color-background);
}

.team-section__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.team-section__intro {
  max-width: 47rem;
}

.team-section__eyebrow {
  color: var(--color-primary);
}

.team-section__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.team-section__lead {
  margin-top: 1.2rem;
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: start;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 1.6rem;
  background: var(--card);
  box-shadow: 0 12px 35px rgb(38 26 50 / 7%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--color-primary) 30%, var(--color-border));
  box-shadow: 0 18px 45px rgb(38 26 50 / 12%);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--color-cream);
}

.team-card__content {
  padding: 1.25rem;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.team-card__role {
  min-height: 2.7em;
  margin-top: 0.45rem;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.team-card__summary {
  margin-top: 0.8rem;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  line-height: 1.55;
}

.team-card__education {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
}

.team-card__education h4 {
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 600;
}

.team-card__credentials {
  margin-top: 0.85rem;
  padding-left: 1rem;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  line-height: 1.55;
  list-style: disc;
}

.team-card__credentials li + li {
  margin-top: 0.35rem;
}

@media (min-width: 48rem) {
  .sales-cta {
    padding-right: 2rem;
    padding-bottom: 8rem;
    padding-left: 2rem;
  }

  .sales-cta__inner {
    padding: 2.75rem 3rem;
  }

  .team-section {
    padding: 8rem 0;
  }

  .team-section__container {
    padding: 0 2rem;
  }
}

@media (max-width: 63.99rem) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 37.49rem) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card__role {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-cta__button,
  .team-card {
    transition: none;
  }
}
