.wmsm-wrap,
.wmsm-wrap *{
  box-sizing:border-box;
}

.wmsm-wrap{
  width:min(100%, 980px);
  margin:0 auto;
  font-family:Arial, Helvetica, sans-serif;
  color:#20312c;
}

.wmsm-card{
  background:#ffffff;
  border:1px solid #dbe9e2;
  border-radius:28px;
  box-shadow:0 18px 45px rgba(24,45,38,.08);
  padding:34px;
}

.wmsm-eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#2f5a4f;
  background:#d7ede5;
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:14px;
}

.wmsm-title{
  margin:0 0 14px;
  color:#23423a;
  font-size:clamp(28px,4vw,42px);
  line-height:1.14;
}

.wmsm-text{
  margin:0 0 16px;
  color:#5f756d;
  font-size:17px;
  line-height:1.8;
}

.wmsm-disclaimer{
  margin:0 0 18px;
  color:#5f756d;
  font-size:15px;
  line-height:1.7;
  background:#f6fbf8;
  border:1px solid #e7f1ec;
  border-radius:18px;
  padding:14px 16px;
}

.wmsm-urgent{
  display:grid;
  gap:6px;
  margin:0 0 24px;
  padding:18px;
  border-radius:20px;
  background:#fff8f5;
  border:1px solid #ffe0d0;
  color:#7a4a2c;
}

.wmsm-urgent strong{
  color:#8a3d16;
}

.wmsm-progress{
  margin-bottom:22px;
}

.wmsm-progress-text{
  margin-bottom:10px;
  color:#4f675f;
  font-size:14px;
  font-weight:700;
}

.wmsm-progress-bar-wrap{
  width:100%;
  height:10px;
  border-radius:999px;
  background:#edf4f0;
  overflow:hidden;
}

.wmsm-progress-bar{
  height:100%;
  border-radius:999px;
  background:#2f5a4f;
  transition:width .25s ease;
}

.wmsm-options{
  display:grid;
  gap:12px;
  margin:0 0 26px;
}

.wmsm-option{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  border-radius:20px;
  border:1px solid #dbe9e2;
  background:#ffffff;
  cursor:pointer;
  transition:all .2s ease;
}

.wmsm-option:hover{
  border-color:#b7d4c6;
  background:#f9fcfb;
}

.wmsm-option.is-selected,
.wmsm-option:has(input:checked){
  border-color:#2f5a4f;
  background:#f4faf7;
  box-shadow:0 10px 24px rgba(24,45,38,.05);
}

.wmsm-option input{
  margin-top:3px;
  accent-color:#2f5a4f;
  transform:scale(1.15);
}

.wmsm-option-text{
  color:#23423a;
  font-size:16px;
  line-height:1.6;
  font-weight:600;
}

.wmsm-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
}

.wmsm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid #dbe9e2;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  transition:all .25s ease;
  cursor:pointer;
}

.wmsm-btn:hover{
  transform:translateY(-2px);
}

.wmsm-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
  transform:none;
}

.wmsm-btn-primary{
  background:#23423a;
  border-color:#23423a;
  color:#ffffff;
}

.wmsm-btn-primary:hover{
  background:#2f5a4f;
  border-color:#2f5a4f;
  color:#ffffff;
}

.wmsm-btn-secondary{
  background:#ffffff;
  color:#23423a;
}

.wmsm-btn-secondary:hover{
  border-color:#2f5a4f;
  color:#23423a;
}

.wmsm-results-grid{
  display:grid;
  gap:18px;
  margin-top:24px;
}

.wmsm-result-card{
  background:#ffffff;
  border:1px solid #dbe9e2;
  border-radius:24px;
  padding:24px;
  box-shadow:0 10px 30px rgba(24,45,38,.05);
}

.wmsm-result-card.is-primary{
  border-color:#b6d5c7;
  background:linear-gradient(180deg,#f7fcf9 0%, #ffffff 100%);
}

.wmsm-score-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  padding:7px 11px;
  border-radius:999px;
  background:#eef7f3;
  color:#2f5a4f;
  font-size:12px;
  font-weight:700;
}

.wmsm-result-title{
  margin:0 0 10px;
  color:#23423a;
  font-size:24px;
  line-height:1.2;
}

.wmsm-result-text{
  margin:0 0 16px;
  color:#5f756d;
  font-size:16px;
  line-height:1.75;
}

.wmsm-result-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.wmsm-reassurance{
  margin-top:26px;
  padding:22px;
  border-radius:22px;
  background:#f6fbf8;
  border:1px solid #e7f1ec;
}

.wmsm-reassurance-title{
  margin:0 0 10px;
  color:#23423a;
  font-size:20px;
  line-height:1.35;
}

@media (max-width: 767px){
  .wmsm-card{
    padding:22px;
    border-radius:22px;
  }

  .wmsm-title{
    font-size:30px;
  }

  .wmsm-text,
  .wmsm-result-text,
  .wmsm-option-text{
    font-size:16px;
    line-height:1.75;
  }

  .wmsm-actions,
  .wmsm-result-actions{
    flex-direction:column;
  }

  .wmsm-btn{
    width:100%;
  }

  .wmsm-result-card,
  .wmsm-reassurance{
    padding:20px;
  }
}

.wmsm-therapist-section-title{
  margin:22px 0 14px;
  color:#23423a;
  font-size:20px;
  line-height:1.35;
}

.wmsm-therapist-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:4px;
}

.wmsm-therapist-card{
  background:#ffffff;
  border:1px solid #dbe9e2;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(24,45,38,.05);
  display:flex;
  flex-direction:column;
  height:auto;
  min-height:0;
}

.wmsm-therapist-image-link{
  display:block;
  height:240px;
  min-height:240px;
  max-height:240px;
  overflow:hidden;
  background:#eef4fb;
}

.wmsm-therapist-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 18%;
  display:block;
}

.wmsm-therapist-body{
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  height:auto;
}

.wmsm-therapist-name{
  margin:0;
  font-size:18px;
  line-height:1.25;
}

.wmsm-therapist-name a{
  color:#0f172a;
  text-decoration:none;
  font-weight:700;
}

.wmsm-therapist-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0;
}

.wmsm-therapist-tag{
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border-radius:999px;
  background:#fff3ed;
  border:1px solid #ffd8c2;
  color:#d45514;
  font-size:11px;
  font-weight:700;
  line-height:1.3;
}

.wmsm-therapist-meta{
  font-size:14px;
  line-height:1.55;
  color:#5f756d;
  margin:0;
}

.wmsm-therapist-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  padding:6px 10px;
  border-radius:999px;
  background:#ecfdf5;
  border:1px solid #bbf7d0;
  color:#15803d;
  font-size:12px;
  font-weight:700;
  margin:0;
}

.wmsm-therapist-fee{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  padding:7px 12px;
  border-radius:10px;
  background:#eef4ff;
  color:#1d4ed8;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  margin:0;
}

.wmsm-therapist-actions{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.wmsm-therapist-actions .wmsm-btn{
  min-width:150px;
}

@media (max-width: 991px){
  .wmsm-therapist-grid{
    grid-template-columns:1fr;
  }
}