.hero--private {
  min-height: 65vh;
}
.hero__text-wrap {
  max-width: 640px;
}
.section-header {
  max-width: 720px;
}
.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}
.private-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.private-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.private-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--color-accent-gold), var(--color-primary));
}
.private-list--light li {
  color: rgba(255, 255, 255, 0.85);
}
.private-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.private-figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.private-figure--right {
  max-height: 420px;
}
.private-card__image {
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.private-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.private-aside {
  align-self: flex-start;
}
.testimonial-meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.section--cta {
  padding-top: var(--space-10);
  padding-bottom: var(--space-12);
  background: linear-gradient(135deg, #050814, #0b2346);
}
.cta-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}
.cta-card__content h2 {
  color: #ffffff;
  margin-bottom: var(--space-3);
}
.cta-card__content p {
  color: rgba(255, 255, 255, 0.8);
}
.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .cta-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cta-card__content {
    max-width: 60%;
  }
}
