/* =====================================================================
   Dr. Parmod's Speciality Dental Clinic — Smart Dental Tools
   tools.html only · tokens from styles.css
   ===================================================================== */

/* ── Urgent banner ─────────────────────────────────────────────────── */
.contact-nudge {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: var(--blue-tint);
  border: 1.5px solid #C5D8F6;
  border-radius: var(--r-lg);
  padding: 24px 30px;
  margin-top: 28px;
}
.contact-nudge-text { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 3px; }
.contact-nudge-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
}
.contact-nudge-title {
  font-family: var(--font-serif); font-size: 20px; font-weight: 400;
  color: var(--navy); line-height: 1.25;
}
.contact-nudge-sub { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.contact-nudge-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.contact-nudge-btns svg { width: 17px; height: 17px; }

/* ── Tool section heading ──────────────────────────────────────────── */
.tool-head { max-width: 680px; margin-bottom: var(--s-6); }
.tool-head .sec-title { margin-top: 10px; }

/* ── Tool card shell ───────────────────────────────────────────────── */
.tool-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: 30px;
}
.tool-label { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }

/* Step labels */
.step-label { display: flex; align-items: center; gap: 10px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}

/* ── Chips ─────────────────────────────────────────────────────────── */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 46px; padding: 11px 18px;
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  background: var(--warm-white); color: var(--ink);
  font-family: var(--font-sans); font-size: 14.5px; font-weight: 600; cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.chip svg { width: 19px; height: 19px; color: var(--blue); flex-shrink: 0; transition: color var(--dur-fast); }
.chip:hover { border-color: var(--blue); transform: translateY(-2px); }
.chip.is-active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.chip.is-active svg { color: #fff; }
.chip-sm { min-height: 44px; padding: 10px 16px; font-size: 14px; }

/* ── Dental chart (tooth map) ──────────────────────────────────────── */
.mouth {
  background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 16px;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.dental-chart-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dental-svg { display: block; width: 100%; max-width: 500px; height: auto; margin: 0 auto; touch-action: manipulation; }
.dental-svg .tg { cursor: pointer; outline: none; }
.dental-svg .tc { fill: #eef2ff; stroke: #1e3a8a; stroke-width: 1; transition: fill .15s, stroke .15s; }
.dental-svg .tg:hover .tc,
.dental-svg .tg:focus-visible .tc { fill: #dbeafe; stroke: #2563eb; stroke-width: 1.5; }
.dental-svg .tg.is-active .tc { fill: var(--amber); stroke: #b45309; stroke-width: 1.5; }
.dental-svg .dcl-gum { stroke: #cbd5e1; stroke-width: 1.5; }
.dental-svg .dcl-mid { stroke: #e2e8f0; stroke-width: 1; stroke-dasharray: 3 3; }
.dental-svg .dcl-lbl {
  font-size: 7px; fill: #94a3b8; letter-spacing: .06em;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  text-transform: uppercase; pointer-events: none;
}
.chart-scroll-hint {
  display: none; font-size: 12px; color: var(--ink-2);
  text-align: center; margin-top: 8px; letter-spacing: .02em;
}
.area-extra { margin-top: 16px; }
.toothmap-selected { font-size: 13.5px; color: var(--ink-2); margin-top: 14px; font-weight: 600; }

/* ── Concern Tool step 2 ──────────────────────────────────────────── */
.concern-step2 { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.concern-step2[hidden] { display: none; }
#concern-issues { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Result panels ─────────────────────────────────────────────────── */
.tool-result { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.tool-result[hidden] { display: none; }

.result-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.result-ic {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.result-ic svg { width: 28px; height: 28px; }
.result-ic.result-ic-warn { background: #FFF1E6; color: #EA580C; }
.result-head h3 { font-size: 22px; margin-bottom: 4px; }
.result-head p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.6; }

.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.result-block { background: var(--soft); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; }
.result-block-wide { grid-column: 1 / -1; }
.result-block-reasons { background: var(--blue-tint); border-color: #bfdbfe; margin-bottom: 4px; }
.result-block-reasons h4 { color: #1d4ed8; }
.result-block-reasons h4 svg { color: #1d4ed8; }
.result-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 700; color: var(--blue);
  margin: 2px 0 6px; letter-spacing: .01em;
}
.result-location svg { width: 13px; height: 13px; flex-shrink: 0; }
.result-block h4 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 800;
  letter-spacing: .02em; color: var(--navy); margin-bottom: 12px;
}
.result-block h4 svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

.tool-ul { display: flex; flex-direction: column; gap: 9px; }
.tool-ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink); line-height: 1.55; }
.tool-ul li svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* CTA row */
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cta-row .btn { min-height: 46px; }

/* Reminder / disclaimer */
.reminder-note {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 12.5px; color: var(--ink-2); line-height: 1.6;
  margin-top: 16px; padding: 12px 14px;
  background: var(--blue-tint); border-radius: var(--r-sm);
}
.reminder-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }

/* =====================================================================
   TOOL 2 — SMILE SCORE
   ===================================================================== */

/* Upload drop area */
.smile-drop-area {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  border: 2px dashed #CBD5E1; border-radius: var(--r-lg);
  padding: 36px 24px; background: var(--soft);
}
.smile-action-row {
  display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; justify-content: center;
}
.smile-action-row .btn svg { width: 17px; height: 17px; }

/* Camera overlay */
#camera-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
#camera-overlay[hidden] { display: none; }
.camera-modal {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  width: min(460px, 100%);
}
.camera-video-wrap {
  width: 100%; border-radius: 16px; overflow: hidden;
  background: #000; aspect-ratio: 4/3;
  box-shadow: 0 0 0 3px rgba(255,255,255,.15);
}
#camera-video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scaleX(-1);
  display: block;
}
.camera-hint { font-size: 13px; color: rgba(255,255,255,.65); text-align: center; margin: 0; }
.camera-controls { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.smile-drop-ic { margin-bottom: 16px; }
.smile-drop-ic svg { width: 80px; height: 80px; }
.smile-drop-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.smile-drop-hint { font-size: 14px; color: var(--ink-2); line-height: 1.5; max-width: 360px; }
.smile-privacy-note {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--ink-2); margin-top: 14px; text-align: center; justify-content: center;
}
.smile-privacy-note svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Preview */
.smile-preview-wrap {
  border-radius: var(--r-lg); overflow: hidden; max-width: 360px;
  margin: 0 auto; border: 1px solid var(--line);
}
.smile-preview-wrap img { display: block; width: 100%; height: auto; max-height: 400px; object-fit: cover; }
.smile-preview-actions { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.btn-lg { min-height: 52px; padding: 0 28px; font-size: 16px; }

/* Loading spinner */
.smile-loading { display: flex; flex-direction: column; align-items: center; padding: 40px 20px; }
.smile-loader-ring { position: relative; width: 80px; height: 80px; margin-bottom: 20px; }
.smile-loader-ring svg { width: 80px; height: 80px; }
.smile-loader-ring span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 28px; }
.spin-arc { transform-box: fill-box; transform-origin: center; animation: smileSpin 1.2s linear infinite; }
@keyframes smileSpin { to { transform: rotate(360deg); } }
.smile-loading-txt { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.smile-loading-sub { font-size: 13px; color: var(--ink-2); }

/* Result */
.smile-result { }
.smile-score-top {
  display: flex; gap: 24px; align-items: center;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; margin-bottom: 22px;
}
.smile-gauge-wrap { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
.smile-gauge-svg { width: 88px; height: 88px; }
.smile-score-num {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; line-height: 1;
}
.smile-score-num span { font-size: 11px; font-weight: 600; color: var(--ink-2); margin-top: 2px; }
.score-great { color: #16A34A; }
.score-good  { color: #2563EB; }
.score-fair  { color: #F59E0B; }
.smile-score-right { flex: 1; }
.smile-headline { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.5; margin: 0; }

.smile-section { margin-bottom: 20px; }
.smile-section h4 {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 800;
  color: var(--navy); margin-bottom: 12px;
}
.smile-section h4 svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

.smile-impr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.smile-impr-card {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 14px;
}
.smile-impr-ic {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.smile-impr-ic svg { width: 20px; height: 20px; }
.smile-impr-body strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.smile-impr-body p { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin: 0; }

/* Error state */
.smile-error {
  text-align: center; padding: 32px 20px;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.smile-error-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; margin: 0 auto 14px; }
.smile-error-ic svg { width: 28px; height: 28px; }
.smile-error p { font-size: 14.5px; color: var(--ink); line-height: 1.6; margin-bottom: 18px; }
.smile-retry-btn { margin-top: 4px; }

/* =====================================================================
   TOOL 3 — EMERGENCY CHECKER
   ===================================================================== */
.emg-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color .15s;
}
.emg-card:last-child { margin-bottom: 0; }
.emg-card-q { display: flex; align-items: center; gap: 14px; flex: 1; }
.emg-card-ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.emg-card-ic svg { width: 22px; height: 22px; }
.emg-q-text { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.emg-q-hint { font-size: 12.5px; color: var(--ink-2); line-height: 1.4; margin: 0; }
.emg-btns { display: flex; gap: 8px; flex-shrink: 0; }
.emg-btn {
  min-width: 60px; min-height: 42px; padding: 8px 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); color: var(--ink-2);
  font-family: var(--font-sans); font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all var(--dur-fast);
}
.emg-btn:hover { border-color: var(--blue); }
.emg-yes.is-active { background: #DC2626; border-color: #DC2626; color: #fff; }
.emg-no.is-active  { background: var(--green); border-color: var(--green); color: #fff; }

/* Q1 pain-scale chips */
.emg-card-scale { flex-direction: column; align-items: flex-start; }
.emg-scale-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.emg-scale-btn {
  padding: 8px 18px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--surface);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: border-color .15s, background .15s, color .15s;
}
.emg-scale-btn:hover { border-color: var(--blue); }
.emg-scale-btn[data-val="none"].is-active  { background: var(--green); border-color: var(--green); color: #fff; }
.emg-scale-btn[data-val="mild"].is-active  { background: #D97706; border-color: #D97706; color: #fff; }
.emg-scale-btn[data-val="severe"].is-active { background: #DC2626; border-color: #DC2626; color: #fff; }

/* Calm result cards — left-border design, subtle tint */
.emg-result-card {
  border: 1px solid var(--line);
  border-left-width: 5px;
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-bottom: 4px;
}
.emg-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.emg-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.emg-result-title {
  font-family: var(--font-serif); font-weight: 400; font-size: 21px;
  color: var(--navy); margin: 0 0 8px;
}
.emg-result-text { font-size: 14.5px; color: var(--ink); line-height: 1.65; margin: 0 0 6px; }
.emg-reassure { font-size: 13px; color: var(--ink-2); font-style: italic; margin: 6px 0 16px; }

/* Hospital — violet */
.emg-res-hospital { background: #FAFAFF; border-left-color: #7C3AED; }
.emg-res-hospital .emg-badge { background: #EDE9FE; color: #5B21B6; }
/* Call today — muted rose */
.emg-res-urgent { background: #FFF8F8; border-left-color: #DC2626; }
.emg-res-urgent .emg-badge { background: #FEE2E2; color: #991B1B; }
/* Call today (bleeding only) */
.emg-res-calltoday { background: #FFF8F8; border-left-color: #DC2626; }
.emg-res-calltoday .emg-badge { background: #FEE2E2; color: #991B1B; }
/* Book soon — amber */
.emg-res-soon { background: #FFFDF5; border-left-color: #D97706; }
.emg-res-soon .emg-badge { background: #FEF3C7; color: #92400E; }
/* Routine — green */
.emg-res-routine { background: #F8FDF9; border-left-color: #16A34A; }
.emg-res-routine .emg-badge { background: #DCFCE7; color: #15803D; }

.emg-reset { margin-top: 14px; }

/* Used only on the hospital-level Call 112 CTA */
.btn-danger { background: #DC2626; color: #fff; box-shadow: 0 8px 24px rgba(220,38,38,.28); }
.btn-danger:hover { background: #B91C1C; transform: translateY(-2px); }

/* =====================================================================
   TOOL 4 — COST ESTIMATOR
   ===================================================================== */
.cost-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
.cost-inputs .field { margin-bottom: 18px; }
.seg-wrap { display: flex; gap: 10px; flex-wrap: wrap; }
.seg-wrap .seg-btn {
  flex: 1; min-width: 74px; min-height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--warm-white); color: var(--ink-2);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all var(--dur-fast);
}
.seg-wrap .seg-btn:hover { border-color: var(--blue); }
.seg-wrap .seg-btn.is-active { border-color: var(--blue); background: var(--blue-tint); color: var(--blue); }
.cost-output {
  background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 26px; min-height: 220px;
}
.cost-placeholder { text-align: center; color: var(--ink-2); padding: 24px 10px; }
.cost-placeholder-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; margin: 0 auto 14px; }
.cost-placeholder-ic svg { width: 28px; height: 28px; }
.cost-placeholder p { font-size: 14.5px; line-height: 1.6; }
.cost-range-head { text-align: center; padding: 18px; margin-bottom: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); }
.cost-range-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.cost-range-value { display: block; font-family: var(--font-serif); font-size: clamp(26px, 4vw, 34px); color: var(--blue); margin: 6px 0; }
.cost-range-meta { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.cost-blocks { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cost-included { font-size: 14px; color: var(--ink); line-height: 1.6; }
.cost-disclaimer {
  display: flex; gap: 11px; align-items: flex-start;
  margin-top: 16px; padding: 15px 16px;
  background: var(--amber-tint); border: 1px solid #F4D9A6; border-radius: var(--r-sm);
  font-size: 13px; color: var(--ink); line-height: 1.6;
}
.cost-disclaimer svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--amber-dk); }
.cost-disclaimer b { color: var(--amber-dk); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* ── Tablet (≤ 900px) ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cost-grid { grid-template-columns: 1fr; gap: 24px; }
  .result-grid { grid-template-columns: 1fr; }
}

/* ── Large mobile (≤ 680px) ──────────────────────────────────────── */
@media (max-width: 680px) {
  /* Emergency checker */
  .emg-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .emg-card-scale { flex-direction: column; }
  .emg-btns { width: 100%; }
  .emg-btn { flex: 1; min-height: 48px; }
  .emg-scale-btns { width: 100%; }
  .emg-scale-btn { flex: 1; text-align: center; min-height: 48px; }
  .emg-card-ic { display: none; }

  /* Smile score */
  .smile-impr-grid { grid-template-columns: 1fr; }
  .smile-score-top { flex-direction: column; align-items: center; text-align: center; }

  /* Issue chips: 2-col grid so they align cleanly */
  #concern-issues { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  #concern-issues .chip { justify-content: flex-start; font-size: 13.5px; padding: 10px 14px; min-height: 44px; }

  /* Gums/Jaw/Not sure extras */
  #toothmap-extra .chip { font-size: 13px; padding: 9px 14px; min-height: 42px; }

  /* Result card reasons list */
  .result-block-reasons li { font-size: 13px; }
}

/* ── Small mobile (≤ 480px) ──────────────────────────────────────── */
@media (max-width: 480px) {
  /* General */
  .tool-card { padding: 20px 16px; }
  .tool-head .sec-title { font-size: clamp(22px, 6vw, 28px); }

  /* Dental chart: scale to fit — no horizontal scroll, all teeth visible */
  .mouth { padding: 14px 10px; overflow: hidden; }
  .dental-chart-wrap { overflow-x: visible; min-width: 0; padding-bottom: 0; }
  .dental-svg { width: 100%; min-width: unset; max-width: 100%; height: auto; }
  .chart-scroll-hint { display: none; }

  /* CTA buttons full-width */
  .cta-row { gap: 8px; }
  .cta-row .btn { flex: 1; min-height: 48px; font-size: 13.5px; }

  /* Contact nudge */
  .contact-nudge { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .contact-nudge-btns { width: 100%; flex-direction: column; }
  .contact-nudge-btns .btn { width: 100%; justify-content: center; }
  .contact-nudge-title { font-size: 17px; }

  /* Smile upload zone */
  .smile-drop-area { padding: 28px 16px; }
  .smile-drop-ic svg { width: 60px; height: 60px; }
  .smile-action-row { flex-direction: column; width: 100%; }
  .smile-action-row .btn { width: 100%; justify-content: center; }
  .smile-action-row svg { width: 17px; height: 17px; }

  /* Emergency result */
  .emg-result-card { padding: 18px 16px; }
  .emg-result-title { font-size: 17px; }

  /* Cost estimator segment buttons */
  .seg-wrap { gap: 6px; }
  .seg-wrap .seg-btn { min-height: 44px; font-size: 13px; padding: 8px 10px; }

  /* Issue chips: still 2-col but tighter */
  #concern-issues .chip { font-size: 13px; padding: 9px 12px; gap: 7px; }
  #concern-issues .chip svg { width: 16px; height: 16px; }
}

/* ── Very small (≤ 360px) ─────────────────────────────────────────── */
@media (max-width: 360px) {
  .dental-svg { width: 420px; min-width: 420px; }
  #concern-issues { grid-template-columns: 1fr; }
  .contact-nudge-title { font-size: 16px; }
}

/* ── Reduced motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .chip, .seg-wrap .seg-btn, .emg-btn { transition: none; }
  .dental-svg .tc { transition: none; }
  .spin-arc { animation: none; }
}
