/* ══════════════════════════════════════════════════
   VALOR MEDICAL REVIEWS — Request a Review Page Styles
   ══════════════════════════════════════════════════ */

/* ── Overview Section ── */
.overview-text {
  max-width: var(--container-narrow);
  margin: 0 auto;
  font-size: var(--text-base);
  line-height: var(--leading-prose);
  color: var(--color-body);
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.process-step {
  background: var(--color-white);
  border: var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 50%;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
  margin: 0 auto var(--space-6);
}

.process-step__title {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--color-body);
  line-height: var(--leading-body);
}

/* ── Requirements Cards (Two Column with burgundy top) ── */
.requirements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.requirement-card {
  position: relative;
  background: var(--color-white);
  border: var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  overflow: hidden;
}

.requirement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-burgundy);
}

.requirement-card__title {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin-bottom: var(--space-6);
  padding-top: var(--space-2);
}

.requirement-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirement-card__item {
  font-size: var(--text-sm);
  color: var(--color-body);
  line-height: var(--leading-body);
  padding-left: var(--space-6);
  position: relative;
  margin-bottom: var(--space-4);
}

.requirement-card__item:last-child {
  margin-bottom: 0;
}

.requirement-card__item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-burgundy);
  font-weight: var(--weight-bold);
}

/* ── Timeline Callout ── */
.timeline-callout {
  background: var(--color-white);
  border: 2px solid var(--color-burgundy);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-align: center;
  margin-top: var(--space-12);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-callout__label {
  font-size: var(--text-sm);
  color: var(--color-burgundy);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  margin-bottom: var(--space-2);
}

.timeline-callout__value {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
  color: var(--color-navy);
}

.timeline-callout__note {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-top: var(--space-4);
}

/* ── Service Fees Card ── */
.fees-card {
  position: relative;
  background: var(--color-white);
  border: var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  margin-top: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-left: 4px solid var(--color-burgundy);
}

.fees-card__title {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin-bottom: var(--space-6);
}

.fees-card__text {
  font-size: var(--text-base);
  color: var(--color-body);
  line-height: var(--leading-body);
}

/* ── Dual CTA with Divider ── */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.dual-cta__divider {
  width: 1px;
  height: 80px;
  background: var(--color-border);
}

.dual-cta__section {
  text-align: center;
}

.dual-cta__btn {
  display: block;
  margin-bottom: var(--space-4);
}

.dual-cta__helper {
  font-size: var(--text-xs);
  color: var(--color-muted);
  line-height: var(--leading-body);
}

.dual-cta__contact-text {
  font-size: var(--text-sm);
  color: var(--color-body);
  line-height: var(--leading-body);
  margin-bottom: var(--space-4);
}

.dual-cta__contact-note {
  font-size: var(--text-xs);
  color: var(--color-muted);
  font-style: italic;
}

/* ── Reassurance Callout ── */
.reassurance-callout {
  background: linear-gradient(135deg, rgba(23, 51, 79, 0.05), rgba(138, 30, 45, 0.05));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-align: center;
  margin-top: var(--space-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reassurance-callout__text {
  font-size: var(--text-base);
  color: var(--color-body);
  line-height: var(--leading-body);
  font-style: italic;
}

/* ── FAQ List ── */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-12);
}

.faq-item {
  border-bottom: var(--border-default);
  padding: var(--space-8) 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item details {
  cursor: pointer;
}

.faq-item summary {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  font-family: var(--font-heading);
  color: var(--color-navy);
  list-style: none;
  outline: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
  user-select: none;
}

.faq-item summary:hover {
  color: var(--color-burgundy);
}

.faq-item summary::marker {
  content: '';
}

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

.faq-item summary::before {
  content: '+';
  display: inline-block;
  margin-right: var(--space-4);
  font-weight: var(--weight-bold);
  color: var(--color-burgundy);
  transition: transform var(--transition-base);
  width: 20px;
}

.faq-item[open] summary::before {
  content: '−';
}

.faq-item-answer {
  color: var(--color-body);
  line-height: var(--leading-body);
  font-size: var(--text-base);
  margin-top: var(--space-6);
  padding-left: var(--space-8);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .requirements {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step__number {
    width: 44px;
    height: 44px;
    font-size: var(--text-base);
  }

  .dual-cta {
    grid-template-columns: 1fr;
  }

  .dual-cta__divider {
    display: none;
  }

  .dual-cta__section {
    padding: var(--space-6) 0;
  }
}
