body {
}
.hero--private {
  color: #ffffff;
}
.hero--private .hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero--private .hero__bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero--private .hero__bg-layer--visible {
  opacity: 1;
}
.hero--private .hero__content {
  max-width: 720px;
  margin: 0 auto;
}
.hero__subtitle {
  margin-top: var(--space-4);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.section__grid {
  align-items: center;
  gap: var(--space-8);
}
.section__grid--reverse {
  direction: rtl;
}
.section__grid--reverse > * {
  direction: ltr;
}
.section__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__header p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.private-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.private-form__submit {
  width: 100%;
  justify-content: center;
}
.private-list {
  list-style: none;
  padding-left: 0;
}
.private-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}
.private-list li + li {
  margin-top: 6px;
}
.private-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fef3c7, #b68b2b);
}
.private-columns {
  align-items: flex-start;
}
.private-package {
  position: relative;
  height: 100%;
}
.private-package__note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.private-steps {
  list-style: none;
  padding-left: 0;
}
.private-steps li + li {
  margin-top: var(--space-4);
}
.private-steps h4 {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-accent);
}
.section--cta-final p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section--cta-final .section__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
  }
  .section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
}
