.voucher-faq {
  padding-top: 90px;
}

.voucher-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.voucher-faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  overflow: hidden;
}

.voucher-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.25;
  color: var(--color-text);
  cursor: pointer;
}

.voucher-faq-list summary::-webkit-details-marker {
  display: none;
}

.voucher-faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--color-accent);
  font-size: 24px;
}

.voucher-faq-list details[open] summary::after {
  content: "−";
}

.voucher-faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  max-width: 980px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.voucher-dark-band {
  border-bottom: 0;
}

.voucher-dark-band + .voucher-white-section {
  margin-top: 0;
}

.voucher-white-section {
  max-width: none;
  margin-top: 28px;
  margin-bottom: 28px;
  border-radius: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(183, 63, 252, 0.22), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(183, 63, 252, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6efff 52%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), inset 0 -1px 0 rgba(183, 63, 252, 0.12);
}

.voucher-white-section > .voucher-section-heading,
.voucher-white-section > .voucher-calculator-grid,
.voucher-white-section > .voucher-usecase-grid,
.voucher-white-section > .voucher-inline-cta {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.voucher-white-section .voucher-section-heading h2,
.voucher-white-section .voucher-usecase-grid h3,
.voucher-white-section .voucher-project-option strong {
  color: #1f1d1d;
}

.voucher-white-section .voucher-section-heading p,
.voucher-white-section .voucher-usecase-grid p,
.voucher-white-section .voucher-project-option span,
.voucher-white-section .voucher-project-option small {
  color: rgba(31, 29, 29, 0.68);
}

.voucher-white-section .voucher-badge {
  background-color: rgba(183, 63, 252, 0.1);
  border-color: rgba(183, 63, 252, 0.18);
  color: #8d22d8;
}

.voucher-white-section .voucher-project-option,
.voucher-white-section .voucher-usecase-grid article {
  background: rgba(31, 29, 29, 0.045);
  border-color: rgba(31, 29, 29, 0.1);
}

.voucher-white-section .voucher-project-option:hover,
.voucher-white-section .voucher-project-option.is-active {
  border-color: rgba(183, 63, 252, 0.58);
  box-shadow: 0 18px 46px rgba(183, 63, 252, 0.18);
}

.voucher-white-section .voucher-project-option.is-active {
  background: linear-gradient(135deg, rgba(183, 63, 252, 0.16), rgba(255,255,255,0.88));
}

.voucher-white-section .voucher-usecase-grid article {
  box-shadow: 0 12px 34px rgba(31, 29, 29, 0.08);
}

.voucher-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(183, 63, 252, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(183, 63, 252, 0.16), rgba(255, 255, 255, 0.08));
}

.voucher-inline-cta strong {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

.voucher-inline-cta span {
  display: block;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.voucher-inline-cta a {
  flex: 0 0 auto;
}

.voucher-white-section .voucher-inline-cta {
  background: rgba(31, 29, 29, 0.055);
  border-color: rgba(183, 63, 252, 0.2);
}

.voucher-white-section .voucher-inline-cta strong {
  color: #1f1d1d;
}

.voucher-white-section .voucher-inline-cta span {
  color: rgba(31, 29, 29, 0.66);
}

@media (max-width: 760px) {
  .voucher-faq {
    padding-top: 64px;
  }

  .voucher-faq-list summary {
    padding: 18px;
    font-size: 17px;
  }

  .voucher-faq-list p {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  .voucher-white-section {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .voucher-dark-band + .voucher-white-section {
    margin-top: 0;
  }

  .voucher-inline-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }
}
