/* =====================================================
   TREATMENTS PAGE (cards + inline accordion) – MOBILE FIRST
===================================================== */
.section-treatments {
  padding-top: 120px;
  padding-bottom: 80px;
}

.section-treatments .section-header {
  max-width: 720px;
  margin: 0 0 32px;
  text-align: left;
}

.section-treatments .section-header h2 {
  margin: 0 0 10px;
}

.section-treatments .section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* Grid */
.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

/* Card */
.treatment-card {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* 🔥 Premium reveal animation */
.treatment-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 1.4s cubic-bezier(0.22,1,0.36,1),
    transform 1.4s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.45s cubic-bezier(0.22,1,0.36,1);
}

.treatment-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Clickable header in card */
.treatment-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  min-height: 80px;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.treatment-toggle h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 600;
}

.treatment-toggle-icon {
  font-size: 20px;
  opacity: 0.7;
  font-weight: 700;
  color: var(--brand-blue);
  transition: transform 0.25s ease;
}

.treatment-content {
  height: 0;
  overflow: hidden;
  padding: 0 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  transition:
    height 0.8s cubic-bezier(0.22,1,0.36,1),
    opacity 0.4s ease;
}

.treatment-card.is-open .treatment-content {
  opacity: 1;
}

.treatment-card.is-open {
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

.treatment-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0 12px;
  color: var(--text-muted);
}

.treatment-content ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--text-muted);
}

.treatment-cta .btn {
  margin-top: 6px;
}


.treatment-card.is-open .treatment-toggle-icon {
  transform: rotate(45deg);
}

.treatment-intro {
  margin: 8px 18px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  height: 72px; /* exact 3 regels: 15px * 1.6 * 3 */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.section-treatments .section-inner {
  padding: 0 24px;
}

/* =====================================================
   TABLET (>= 768px)
===================================================== */
@media (min-width: 768px) {
  .treatments-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: start;
  }
  
  .section-treatments .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
}

/* =====================================================
   TREATMENTS CTA — "Doe weer mee." statement in kaart
===================================================== */

.treatments-cta-statement {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 12px;
}

/* =====================================================
   DESKTOP (>= 1200px)
===================================================== */
@media (min-width: 1200px) {
  .section-treatments .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .treatments-grid {
    gap: 28px;
  }
}