.experience-panel,
.deliverable-section,
.faq-section,
.after-checkout-section {
  width: min(1240px, 100%);
  margin: 22px auto 0;
  border: 1px solid rgba(23, 34, 29, .12);
  border-radius: 8px;
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
}

.experience-grid,
.deliverable-grid,
.faq-grid,
.unlock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.experience-card,
.deliverable-card,
.faq-card,
.unlock-card {
  border: 1px solid #e0e4e1;
  border-radius: 8px;
  background: #fbfcfa;
  padding: 18px;
}

.experience-card h3,
.deliverable-card h3,
.faq-card h3,
.unlock-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.experience-card p,
.deliverable-card p,
.faq-card p,
.unlock-card p {
  margin-bottom: 0;
  color: #5f6b65;
  line-height: 1.55;
}

.quiz-field {
  display: grid;
  gap: 7px;
}

.quiz-field select {
  width: 100%;
  border: 1px solid #cdd5d0;
  border-radius: 7px;
  background: #fff;
  color: #17221d;
  padding: 12px 13px;
  outline: none;
}

.quiz-field select:focus {
  border-color: #176044;
  box-shadow: 0 0 0 3px rgba(23, 96, 68, .13);
}

.preview-upgrades {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.preview-upgrades div {
  border: 1px solid #d9dfdb;
  border-radius: 7px;
  padding: 13px;
  background: #fff;
}

.preview-upgrades span {
  display: block;
  color: #b96636;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.preview-upgrades p {
  margin: 0;
  color: #46534d;
  font-size: 13px;
  line-height: 1.45;
}

.sample-deliverable-link {
  margin-top: 16px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #17221d;
  color: #fff;
  padding: 0 15px;
  text-decoration: none;
  font-weight: 850;
}

.after-checkout-section {
  background: #17221d;
  color: #fff;
}

.after-checkout-section .section-kicker,
.after-checkout-section h2,
.after-checkout-section p {
  color: inherit;
}

.after-checkout-section .unlock-card {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
}

.after-checkout-section .unlock-card p {
  color: rgba(255, 255, 255, .76);
}

.intake-page .policy-shell {
  width: min(980px, 100%);
}

.intake-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.intake-form .field-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intake-form select,
.intake-form input,
.intake-form textarea {
  width: 100%;
  border: 1px solid #cdd5d0;
  border-radius: 7px;
  background: #fff;
  color: #17221d;
  padding: 12px 13px;
  outline: none;
}

.intake-form textarea {
  min-height: 118px;
}

@media (max-width: 860px) {
  .experience-grid,
  .deliverable-grid,
  .faq-grid,
  .unlock-grid,
  .preview-upgrades,
  .intake-form .field-row {
    grid-template-columns: 1fr;
  }
}
