/* ══════════════════════════════════════════════════
   VALOR MEDICAL REVIEWS — About Page Styles
   ══════════════════════════════════════════════════ */

/* ── Mission Section ── */
.mission-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.mission-paragraph {
  font-size: var(--text-base);
  line-height: var(--leading-prose);
  color: var(--color-body);
  margin-bottom: var(--space-8);
}

.mission-paragraph:last-child {
  margin-bottom: 0;
}

/* ── Split Cards (What We Deliver / What We Do Not Do) ── */
.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

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

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

.split-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);
}

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

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

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

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

/* ── Core Values Cards (3-column with burgundy top) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

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

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

.value-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-4);
  padding-top: var(--space-2);
}

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

/* ── Physician-Led Model Steps ── */
.model-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
  margin-bottom: var(--space-12);
}

.model-step {
  background: var(--color-white);
  border: var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
}

.model-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-4);
}

.model-step__title {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  font-family: var(--font-heading);
  color: var(--color-navy);
}

/* ── Model Callout ── */
.model-callout {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  font-size: var(--text-base);
  line-height: var(--leading-body);
  max-width: 700px;
  margin: 0 auto;
}

/* ── Independence Statement ── */
.independence-statement {
  background: var(--color-white);
  border: var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
  margin-top: var(--space-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.independence-statement__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);
}

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

/* ── Responsive ── */
@media (max-width: 900px) {
  .split-cards,
  .values-grid,
  .model-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .model-step__number {
    width: 44px;
    height: 44px;
    font-size: var(--text-base);
  }
}
