/* ═══════════════════════════════════════════════════════════════
   TEETH SYMPTOM CHECKER
   ═══════════════════════════════════════════════════════════════ */

.sq-shell { max-width: 860px; margin: 0 auto; }

.sq-instruction {
  text-align: center;
  color: #4b5563;
  font-size: .95rem;
  margin-bottom: 24px;
  font-weight: 500;
}

/* ── Symptom grid ────────────────────────────────────────────── */
.sq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.sq-symptom-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: all .18s;
  font-family: inherit;
  position: relative;
}
.sq-symptom-btn:hover {
  border-color: #2A9D8F;
  background: #f0fafa;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(42,157,143,.1);
}
.sq-symptom-btn.selected {
  border-color: #2A9D8F;
  background: rgba(42,157,143,.08);
  box-shadow: 0 0 0 3px rgba(42,157,143,.15);
}
.sq-symptom-btn.selected::after {
  content: "✓";
  position: absolute;
  top: 8px; right: 10px;
  font-size: .75rem;
  font-weight: 800;
  color: #2A9D8F;
  background: rgba(42,157,143,.15);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.sq-sym-icon  { font-size: 1.5rem; margin-bottom: 2px; }
.sq-sym-label { font-size: .88rem; font-weight: 700; color: #1a1a2e; line-height: 1.3; }
.sq-sym-desc  { font-size: .75rem; color: #6b7280; line-height: 1.3; margin-top: 1px; }

/* ── Footer / analyse button ─────────────────────────────────── */
.sq-footer {
  position: sticky;
  bottom: 0;
  background: linear-gradient(to top, #fff 80%, transparent);
  padding: 20px 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sq-selected-count {
  background: rgba(42,157,143,.1);
  color: #1f7a6e;
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
}
.sq-analyse-btn {
  background: #2A9D8F;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 13px 32px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(42,157,143,.3);
}
.sq-analyse-btn:hover { background: #1f7a6e; transform: translateY(-2px); }

/* ── Results ─────────────────────────────────────────────────── */
.sq-results-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sq-results-header h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; }
.sq-back-btn {
  background: none;
  border: 1.5px solid #e5e7eb;
  border-radius: 99px;
  padding: 7px 16px;
  font-size: .82rem;
  cursor: pointer;
  font-family: inherit;
  color: #6b7280;
  transition: all .18s;
  white-space: nowrap;
}
.sq-back-btn:hover { border-color: #2A9D8F; color: #2A9D8F; }

/* Urgency banner */
.sq-urgency-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.sq-urgency-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.sq-urgency-banner strong { display: block; font-size: .9rem; margin-bottom: 3px; }
.sq-urgency-banner p { font-size: .83rem; color: #4b5563; margin: 0; line-height: 1.5; }

/* Finding cards */
.sq-findings-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.sq-finding-card {
  background: #fff;
  border: 1.5px solid #f3f4f6;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.sq-finding-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }

.sq-finding-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fafafa;
  border-bottom: 1px solid #f3f4f6;
}
.sq-finding-icon { font-size: 1.8rem; flex-shrink: 0; }
.sq-finding-title h4 { font-size: .92rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }

.sq-urgency-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
}

.sq-finding-body { padding: 14px 18px; }
.sq-treatment-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.sq-treatment-label { font-size: .78rem; font-weight: 600; color: #6b7280; flex-shrink: 0; }
.sq-treatment-val   { font-size: .88rem; font-weight: 700; color: #2A9D8F; }
.sq-why             { font-size: .82rem; color: #6b7280; line-height: 1.55; margin: 0; }

/* CTA */
.sq-cta-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #2A9D8F 100%);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}
.sq-cta-icon { font-size: 2.5rem; margin-bottom: 10px; }
.sq-cta-box h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.sq-cta-box p  { color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: 20px; line-height: 1.5; }

.sq-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 99px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.sq-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

.sq-cta-note { color: rgba(255,255,255,.55); font-size: .78rem; margin-top: 12px; margin-bottom: 0; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sq-grid { grid-template-columns: 1fr; }
  .sq-finding-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
/* ═══════════════════════════════════════════════════════════════
   FEATURE 1 · ANXIETY QUIZ STYLES
   ═══════════════════════════════════════════════════════════════ */

.quiz-shell {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(42,157,143,.13);
  overflow: hidden;
}

.quiz-progress-wrap {
  height: 6px;
  background: rgba(42,157,143,.15);
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2A9D8F, #E9C46A);
  transition: width .5s cubic-bezier(.4,0,.2,1);
  border-radius: 0 3px 3px 0;
}

.quiz-step-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: #6b7280;
  padding: 14px 24px 0;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.quiz-body { padding: 28px 32px 36px; }

.quiz-q {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 22px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.quiz-opts { display: flex; flex-direction: column; gap: 10px; }

.quiz-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: .92rem;
  color: #1a1a2e;
  font-family: inherit;
  text-align: left;
  transition: all .2s;
  font-weight: 500;
}
.quiz-opt:hover:not(:disabled) { border-color: #2A9D8F; background: #f0fafa; transform: translateX(4px); }
.quiz-opt.selected { border-color: #2A9D8F; background: rgba(42,157,143,.1); color: #1f7a6e; }
.quiz-opt:disabled { cursor: default; opacity: .75; }
.quiz-opt-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Result */
.quiz-result { text-align: center; }
.result-emoji { font-size: 3.5rem; margin-bottom: 12px; }
.result-label {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 99px;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 16px;
}
.result-meter {
  height: 8px;
  background: #f3f4f6;
  border-radius: 99px;
  margin: 0 0 18px;
  overflow: hidden;
}
.result-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 1s cubic-bezier(.4,0,.2,1);
}
.result-msg { color: #4b5563; margin-bottom: 20px; font-size: .95rem; line-height: 1.6; }

.result-tips {
  background: #f0fafa;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 22px;
}
.result-tips strong { font-size: .88rem; color: #1a1a2e; }
.result-tips ul { margin-top: 10px; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.result-tips ul li { font-size: .87rem; color: #4b5563; padding-left: 18px; position: relative; }
.result-tips ul li::before { content: "✓"; position: absolute; left: 0; color: #2A9D8F; font-weight: 700; }

.result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.result-note { font-size: .75rem; color: #9ca3af; }

/* Section intro pill */
.pain-point-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3cd;
  color: #92400e;
  border: 1px solid #fcd34d;
  border-radius: 99px;
  padding: 4px 14px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE 2 · COST ESTIMATOR STYLES
   ═══════════════════════════════════════════════════════════════ */

.estimator-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.est-step {
  padding: 22px 0 18px;
  border-bottom: 1px solid #f3f4f6;
}
.est-step:last-of-type { border-bottom: none; }

.est-step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  font-size: .95rem;
}
.est-num {
  width: 26px; height: 26px;
  background: #2A9D8F;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Treatment grid */
.est-treatments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.est-treatment-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 99px;
  background: #fff;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 500;
  color: #374151;
  font-family: inherit;
  transition: all .18s;
  white-space: nowrap;
}
.est-treatment-btn:hover { border-color: #2A9D8F; color: #2A9D8F; background: #f0fafa; }
.est-treatment-btn.active { border-color: #2A9D8F; background: #2A9D8F; color: #fff; }
.est-treatment-btn.popular { border-color: rgba(42,157,143,.4); }
.est-badge {
  position: absolute;
  top: -8px; right: -4px;
  background: #E9C46A;
  color: #78350f;
  font-size: .62rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 99px;
}
.est-treatment-btn.active .est-badge { background: rgba(255,255,255,.25); color: #fff; }

/* Radio group */
.est-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.est-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  color: #374151;
  transition: all .18s;
  flex: 1; min-width: 120px;
  justify-content: center;
}
.est-radio:hover { border-color: #2A9D8F; background: #f0fafa; }
.est-radio.active { border-color: #2A9D8F; background: rgba(42,157,143,.08); color: #1f7a6e; font-weight: 700; }
.est-radio-icon { font-size: 1rem; }

/* Placeholder */
.est-placeholder {
  text-align: center;
  padding: 32px 20px;
  background: #f9fafb;
  border-radius: 14px;
  border: 2px dashed #d1fae5;
  color: #9ca3af;
}
.est-placeholder span { font-size: 2rem; display: block; margin-bottom: 8px; }
.est-placeholder p { font-size: .9rem; }

/* Result card */
.est-result-card {
  background: linear-gradient(135deg, #f0fafa 0%, #fff 100%);
  border: 1.5px solid rgba(42,157,143,.2);
  border-radius: 16px;
  padding: 24px;
  animation: fadeIn .4s ease;
}

.est-result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.est-result-treatment { font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; }
.est-result-sub { font-size: .78rem; color: #6b7280; }

.est-price-range { text-align: right; }
.est-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2A9D8F;
  white-space: nowrap;
}

.est-saving {
  background: #dcfce7;
  color: #166534;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .85rem;
  margin-bottom: 16px;
}

.est-plans-label { font-size: .82rem; font-weight: 700; color: #374151; margin-bottom: 10px; }
.est-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.est-plan {
  background: #fff;
  border: 1px solid rgba(42,157,143,.2);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.est-plan-months { display: block; font-size: .75rem; color: #6b7280; margin-bottom: 4px; }
.est-plan-amount { font-size: .9rem; font-weight: 700; color: #1f7a6e; }

.est-disclaimer {
  font-size: .76rem;
  color: #9ca3af;
  background: #fafafa;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.est-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.est-cta-row .btn { flex: 1; text-align: center; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .quiz-body { padding: 20px 18px 28px; }
  .quiz-q { font-size: 1rem; }
  .est-plans { grid-template-columns: repeat(2, 1fr); }
  .est-result-header { flex-direction: column; }
  .est-price { font-size: 1.25rem; }
}
