/* ============================================================
   pages/behandelingen.css — Treatments page styles
   Page-specific only. Reusable pieces live in components.css.
   Mobile-first; desktop overrides under @media (min-width: 768px).
   ============================================================ */

/* ── S1 Hero (teal) ──────────────────────────────────────── */
.beh-hero {
  padding-block: var(--space-3xl);
  background: var(--color-primary);
  color: var(--color-surface);
  text-align: center;
}

@media (min-width: 768px) {
  .beh-hero {
    padding-block: var(--space-4xl);
  }
}

.beh-hero__inner {
  max-width: 760px;
  margin-inline: auto;
}

.beh-hero__kicker {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
}

.beh-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .beh-hero__title {
    font-size: var(--text-5xl);
  }
}

.beh-hero__sub {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-primary-light);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* ── S2 Treatment cards ──────────────────────────────────── */
.beh-treatments {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.beh-treatment {
  scroll-margin-top: calc(var(--header-height) + var(--space-md));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.beh-treatment:hover {
  box-shadow: var(--shadow-md);
}

.beh-treatment__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  padding: var(--space-lg);
  background: var(--color-primary);
  color: var(--color-surface);
}

.beh-treatment__icon {
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-surface);
}

.beh-treatment__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-surface);
  margin: 0;
  flex: 1 1 auto;
}

.beh-treatment__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  width: 100%;
}

@media (min-width: 768px) {
  .beh-treatment__meta {
    width: auto;
    flex-wrap: nowrap;
  }
}

.beh-treatment__meta-item {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-primary-light);
}

.beh-treatment__price {
  font-weight: var(--weight-semibold);
  color: var(--color-surface);
}

.beh-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  padding: var(--space-xs) var(--space-md);
  flex-shrink: 0;
}

.beh-badge--popular {
  background: var(--color-accent);
  color: var(--color-text);
}

.beh-treatment__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .beh-treatment__body {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    padding: var(--space-xl);
  }
}

.beh-treatment__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}

.beh-treatment__col-text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin: 0;
}

.beh-treatment__footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0 var(--space-lg) var(--space-lg);
}

@media (min-width: 768px) {
  .beh-treatment__footer {
    padding: 0 var(--space-xl) var(--space-xl);
  }
}

.beh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
}

.beh-tag {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xs) var(--space-md);
}

.beh-treatment__note {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: var(--leading-snug);
  margin: 0;
}

/* ── S3 Combination treatments ───────────────────────────── */
.beh-combos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .beh-combos {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

.beh-combo-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.beh-combo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.beh-combo-card__formula {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.beh-combo-card__pill {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.beh-combo-card__plus {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-accent);
  line-height: 1;
}

.beh-combo-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

.beh-combo-card__desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}

/* ── S4 Condition finder ─────────────────────────────────── */
.beh-conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .beh-conditions {
    grid-template-columns: repeat(4, 1fr);
  }
}

.beh-condition-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: var(--space-lg);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.beh-condition-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.beh-condition-card--expandable {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.beh-condition-card--expandable.is-active {
  border-color: var(--color-primary);
  border-width: 2px;
  background: var(--color-primary-light);
  transform: none;
  box-shadow: var(--shadow-md);
}

.beh-condition-card__icon {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  line-height: 1;
}

.beh-condition-card__name {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.beh-condition-card__rec {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: var(--weight-medium);
  margin-top: auto;
}

/* ── S5 First visit ──────────────────────────────────────── */
.beh-first-visit {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .beh-first-visit {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
  }
}

.beh-first-visit__text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin: 0;
}

.beh-info-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
  list-style: none;
  margin: 0;
}

.beh-info-box__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.beh-info-box__item:first-child {
  padding-top: 0;
}

.beh-info-box__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.beh-info-box__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.beh-info-box__value {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

/* ── S6 Pricing table ────────────────────────────────────── */
.beh-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .beh-price-table {
    font-size: var(--text-base);
  }
}

.beh-price-table th,
.beh-price-table td {
  text-align: left;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.beh-price-table thead th {
  background: var(--color-primary);
  color: var(--color-surface);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
}

.beh-price-table tbody tr:last-child td {
  border-bottom: none;
}

.beh-price-table tbody tr:nth-child(even) {
  background: var(--color-primary-light);
}

.beh-price-table__price {
  font-weight: var(--weight-semibold);
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.beh-price-note {
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.beh-price-packages {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-accent-light);
  border-radius: var(--radius);
  text-align: center;
}

.beh-price-packages__text {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin: 0;
}

.beh-price-insurance {
  margin-top: var(--space-md);
  text-align: center;
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

/* ── S7 Final CTA ────────────────────────────────────────── */
.beh-cta {
  background: var(--color-primary-light);
  text-align: center;
}

.beh-cta__inner {
  max-width: 640px;
  margin-inline: auto;
}

.beh-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .beh-cta__title {
    font-size: var(--text-4xl);
  }
}

.beh-cta__sub {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.beh-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .beh-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
}
