/* ============================================================
   ClearlyComply — Premium Tools CSS
   Shared across all 51 tools. Include after css/styles.css.
   ============================================================ */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --tp-brand: #1A7FC4;
  --tp-brand-dark: #1250a0;
  --tp-accent: #F59E0B;
  --tp-green: #10b981;
  --tp-red: #ef4444;
  --tp-surface: #fff;
  --tp-surface-2: #f8fafc;
  --tp-border: #e2e8f0;
  --tp-text: #1e293b;
  --tp-text-2: #475569;
  --tp-text-3: #94a3b8;
  --tp-shadow: 0 4px 24px rgba(0,0,0,.09);
  --tp-shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --tp-radius: 16px;
  --tp-radius-sm: 10px;
  --tp-transition: all .2s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --tp-surface: #1e293b;
  --tp-surface-2: #0f172a;
  --tp-border: #334155;
  --tp-text: #f1f5f9;
  --tp-text-2: #94a3b8;
  --tp-text-3: #64748b;
  --tp-shadow: 0 4px 24px rgba(0,0,0,.4);
  --tp-shadow-lg: 0 12px 48px rgba(0,0,0,.5);
}

/* ── Sticky CTA Bar ─────────────────────────────────────────── */
#tp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: linear-gradient(135deg, #0B3C5D, #1A7FC4);
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#tp-sticky-cta.visible { transform: translateY(0); }
#tp-sticky-cta .cta-text {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  flex: 1;
  line-height: 1.3;
}
#tp-sticky-cta .cta-text span {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  opacity: .8;
  margin-top: 2px;
}
#tp-sticky-cta .cta-btn {
  background: #F59E0B;
  color: #1a1a1a;
  font-weight: 700;
  font-size: .88rem;
  padding: .6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--tp-transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
#tp-sticky-cta .cta-btn:hover { background: #d97706; transform: scale(1.02); }
#tp-sticky-cta .cta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 .5rem;
  flex-shrink: 0;
}
#tp-sticky-cta .cta-close:hover { color: #fff; }
body { padding-bottom: 64px; }

/* ── Exit Intent Popup ──────────────────────────────────────── */
#tp-exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#tp-exit-popup.show { display: flex; }
.tp-popup-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  animation: tp-popup-in .3s cubic-bezier(.4,0,.2,1);
}
@keyframes tp-popup-in {
  from { opacity: 0; transform: scale(.92) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.tp-popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #f1f5f9; border: none; border-radius: 50%;
  width: 28px; height: 28px; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #64748b;
}
.tp-popup-close:hover { background: #e2e8f0; }
.tp-popup-badge {
  display: inline-block;
  background: #fef3c7; color: #92400e;
  font-size: .75rem; font-weight: 700;
  padding: .25rem .7rem; border-radius: 20px;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .05em;
}
.tp-popup-card h3 {
  font-size: 1.4rem; font-weight: 800; color: #1e293b;
  margin-bottom: .5rem; line-height: 1.3;
}
.tp-popup-card p {
  color: #475569; font-size: .9rem; line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tp-popup-form { display: flex; flex-direction: column; gap: .75rem; }
.tp-popup-form input {
  padding: .7rem 1rem; border: 1.5px solid #e2e8f0;
  border-radius: 10px; font-size: .9rem; outline: none;
  font-family: inherit; transition: border-color .2s;
}
.tp-popup-form input:focus { border-color: #1A7FC4; }
.tp-popup-form button {
  padding: .85rem; background: linear-gradient(135deg,#1A7FC4,#1250a0);
  color: #fff; border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: var(--tp-transition);
}
.tp-popup-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 20px #1A7FC444; }
.tp-popup-skip {
  text-align: center; font-size: .8rem; color: #94a3b8; margin-top: .75rem; cursor: pointer;
}
.tp-popup-skip:hover { color: #475569; }

/* ── Premium Tool Card / Calculator Card ────────────────────── */
.tp-card {
  background: var(--tp-surface);
  border-radius: var(--tp-radius);
  box-shadow: var(--tp-shadow);
  border: 1px solid var(--tp-border);
  overflow: hidden;
  transition: var(--tp-transition);
}
.tp-card:hover { box-shadow: var(--tp-shadow-lg); }
.tp-card-header {
  background: linear-gradient(135deg, rgba(26,127,196,.06), rgba(18,80,160,.04));
  border-bottom: 1px solid var(--tp-border);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tp-card-header h2 {
  font-size: 1.05rem; font-weight: 700; color: var(--tp-text); margin: 0;
}
.tp-card-body { padding: 1.75rem; }

/* ── Live Result Badge ──────────────────────────────────────── */
.tp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #dcfce7;
  color: #166534;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-left: auto;
}
.tp-live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #16a34a;
  border-radius: 50%;
  animation: tp-pulse 1.5s infinite;
}
@keyframes tp-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

/* ── Result Panel (Glassmorphism) ───────────────────────────── */
.tp-result-panel {
  background: linear-gradient(135deg, rgba(26,127,196,.07), rgba(18,80,160,.04));
  border: 1.5px solid rgba(26,127,196,.2);
  border-radius: var(--tp-radius-sm);
  padding: 1.5rem;
  margin-top: 1.25rem;
  display: none;
  animation: tp-fade-in .3s ease;
}
.tp-result-panel.show { display: block; }
@keyframes tp-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.tp-result-highlight {
  background: linear-gradient(135deg, #1A7FC4, #1250a0);
  color: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tp-result-highlight .label {
  font-size: .85rem; opacity: .85; margin-bottom: .3rem;
}
.tp-result-highlight .value {
  font-size: 2rem; font-weight: 800; line-height: 1;
}

.tp-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) { .tp-result-grid { grid-template-columns: 1fr; } }

.tp-result-cell {
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
  border-radius: 10px;
  padding: .9rem 1.1rem;
}
.tp-result-cell .cell-label {
  font-size: .75rem; color: var(--tp-text-2);
  text-transform: uppercase; letter-spacing: .05em;
  font-weight: 600; margin-bottom: .3rem;
}
.tp-result-cell .cell-value {
  font-size: 1.1rem; font-weight: 700; color: var(--tp-text);
}
.tp-result-cell.positive .cell-value { color: var(--tp-green); }
.tp-result-cell.negative .cell-value { color: var(--tp-red); }
.tp-result-cell.brand .cell-value { color: var(--tp-brand); }

/* ── Result Action Buttons ──────────────────────────────────── */
.tp-result-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.tp-action-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  border: 1.5px solid var(--tp-border);
  border-radius: 8px;
  background: var(--tp-surface);
  color: var(--tp-text-2);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--tp-transition);
  font-family: inherit;
}
.tp-action-btn:hover {
  border-color: var(--tp-brand);
  color: var(--tp-brand);
  background: rgba(26,127,196,.05);
}
.tp-action-btn.whatsapp:hover { border-color: #25D366; color: #25D366; background: rgba(37,211,102,.05); }
.tp-action-btn.expert {
  background: linear-gradient(135deg,#1A7FC4,#1250a0);
  color: #fff;
  border-color: transparent;
}
.tp-action-btn.expert:hover { transform: translateY(-1px); box-shadow: 0 4px 16px #1A7FC444; }

/* ── Visual Donut Chart ─────────────────────────────────────── */
.tp-donut-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}
.tp-donut-chart {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.tp-donut-chart svg { transform: rotate(-90deg); }
.tp-donut-bg { fill: none; stroke: #e2e8f0; stroke-width: 12; }
.tp-donut-fg { fill: none; stroke-width: 12; stroke-linecap: round; transition: stroke-dasharray .6s ease; }
.tp-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--tp-text-2);
  text-align: center;
  line-height: 1.2;
}
.tp-donut-center strong { font-size: 1rem; color: var(--tp-text); display: block; }
.tp-donut-legend { flex: 1; }
.tp-legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--tp-text-2);
  margin-bottom: .45rem;
}
.tp-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tp-legend-value { font-weight: 700; color: var(--tp-text); margin-left: auto; }

/* ── Progress Bar ───────────────────────────────────────────── */
.tp-progress-bar {
  height: 8px;
  background: var(--tp-border);
  border-radius: 20px;
  overflow: hidden;
  margin: .5rem 0;
}
.tp-progress-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #1A7FC4, #1250a0);
  transition: width .6s ease;
}

/* ── Trust Strip ────────────────────────────────────────────── */
.tp-trust-strip {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--tp-surface-2);
  border-radius: var(--tp-radius-sm);
  border: 1px solid var(--tp-border);
  margin: 1.5rem 0;
}
.tp-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--tp-text-2);
  font-weight: 500;
}
.tp-trust-icon { font-size: 1.1rem; }

/* ── Expert CTA Section ─────────────────────────────────────── */
.tp-expert-cta {
  background: linear-gradient(135deg, #0B3C5D, #1A7FC4);
  border-radius: var(--tp-radius);
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0;
}
.tp-expert-cta h3 {
  color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: .5rem;
}
.tp-expert-cta p {
  color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 1.5rem;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.tp-expert-cta .btn-group {
  display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap;
}
.tp-expert-cta .btn-primary {
  background: #F59E0B; color: #1a1a1a;
  padding: .85rem 2rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: var(--tp-transition);
}
.tp-expert-cta .btn-primary:hover { background: #d97706; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.tp-expert-cta .btn-secondary {
  background: rgba(255,255,255,.15); color: #fff;
  padding: .85rem 1.5rem; border-radius: 10px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: var(--tp-transition);
}
.tp-expert-cta .btn-secondary:hover { background: rgba(255,255,255,.25); }

/* ── Testimonials ───────────────────────────────────────────── */
.tp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 700px) { .tp-testimonials { grid-template-columns: 1fr; } }
.tp-testimonial {
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-sm);
  padding: 1.25rem;
}
.tp-stars { color: #F59E0B; font-size: .9rem; margin-bottom: .5rem; }
.tp-testimonial blockquote {
  font-size: .85rem; color: var(--tp-text-2); line-height: 1.6;
  font-style: italic; margin: 0 0 .75rem;
}
.tp-testimonial .author { font-size: .78rem; font-weight: 700; color: var(--tp-text); }
.tp-testimonial .author span { font-weight: 400; color: var(--tp-text-2); }

/* ── FAQ Section ────────────────────────────────────────────── */
.tp-faq-section { margin: 2rem 0; }
.tp-faq-section h2 {
  font-size: 1.3rem; font-weight: 800; color: var(--tp-text);
  margin-bottom: 1.25rem;
}
.tp-faq-item {
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-sm);
  margin-bottom: .6rem;
  overflow: hidden;
  transition: var(--tp-transition);
}
.tp-faq-item:hover { border-color: rgba(26,127,196,.3); }
.tp-faq-q {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--tp-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--tp-surface);
  user-select: none;
  font-size: .95rem;
}
.tp-faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(26,127,196,.1);
  color: var(--tp-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; flex-shrink: 0;
  transition: transform .25s;
}
.tp-faq-item.open .tp-faq-icon { transform: rotate(45deg); background: var(--tp-brand); color: #fff; }
.tp-faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: .9rem;
  color: var(--tp-text-2);
  line-height: 1.7;
  background: var(--tp-surface);
}
.tp-faq-item.open .tp-faq-a { display: block; }

/* ── Dark Mode Toggle ───────────────────────────────────────── */
#tp-dark-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(calc(100% - 14px));
  z-index: 9000;
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
  border-radius: 8px 0 0 8px;
  padding: .5rem .35rem .5rem .55rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  font-size: .65rem;
  font-weight: 600;
  color: var(--tp-text-2);
  box-shadow: -2px 0 8px rgba(0,0,0,.08);
  transition: transform .3s ease;
  line-height: 1;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  letter-spacing: .08em;
}
#tp-dark-toggle:hover { transform: translateY(-50%) translateX(0); }
#tp-dark-toggle .toggle-icon { font-size: 1.1rem; writing-mode: initial; }

/* ── Form Upgrades ──────────────────────────────────────────── */
.tp-input-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}
.tp-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--tp-text-2);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tp-label .tp-hint {
  font-weight: 400; text-transform: none; letter-spacing: 0;
  color: var(--tp-text-3); font-size: .75rem;
}
.tp-input {
  padding: .8rem 1rem;
  border: 2px solid var(--tp-border);
  border-radius: var(--tp-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--tp-surface);
  color: var(--tp-text);
  width: 100%;
}
.tp-input:focus {
  border-color: var(--tp-brand);
  box-shadow: 0 0 0 3px rgba(26,127,196,.12);
}
.tp-input:valid:not(:placeholder-shown) { border-color: var(--tp-green); }
.tp-select { appearance: none; cursor: pointer; }

.tp-range-wrap { position: relative; }
.tp-range {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--tp-brand) 0%, var(--tp-border) 0%);
  outline: none;
  cursor: pointer;
  margin-top: .5rem;
}
.tp-range::-webkit-slider-thumb {
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--tp-brand);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  cursor: pointer;
  transition: transform .15s;
}
.tp-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.tp-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: var(--tp-text-3);
  margin-top: .25rem;
}

.tp-calc-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #1A7FC4, #1250a0);
  color: #fff;
  border: none;
  border-radius: var(--tp-radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--tp-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .25rem;
}
.tp-calc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,127,196,.35); }
.tp-calc-btn:active { transform: translateY(0); }

/* ── Status / Risk Badges ───────────────────────────────────── */
.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tp-badge-green { background: #dcfce7; color: #166534; }
.tp-badge-yellow { background: #fef3c7; color: #92400e; }
.tp-badge-red { background: #fee2e2; color: #991b1b; }
.tp-badge-blue { background: #dbeafe; color: #1e40af; }

/* ── Stats Counter Row ──────────────────────────────────────── */
.tp-stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0;
}
.tp-stat-item { text-align: center; }
.tp-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1A7FC4, #1250a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.tp-stat-label { font-size: .75rem; color: var(--tp-text-2); font-weight: 500; margin-top: .25rem; }

/* ── Comparison Table ───────────────────────────────────────── */
.tp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  border-radius: var(--tp-radius-sm);
  overflow: hidden;
  border: 1px solid var(--tp-border);
}
.tp-compare-table th {
  background: linear-gradient(135deg, #1A7FC4, #1250a0);
  color: #fff;
  padding: .8rem 1rem;
  text-align: left;
  font-weight: 700;
}
.tp-compare-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--tp-border);
  color: var(--tp-text-2);
}
.tp-compare-table tr:last-child td { border-bottom: none; }
.tp-compare-table tr:nth-child(even) td { background: rgba(26,127,196,.03); }
.tp-compare-table .highlight { font-weight: 700; color: var(--tp-brand); }

/* ── How-to Steps ───────────────────────────────────────────── */
.tp-steps { counter-reset: step; display: flex; flex-direction: column; gap: .75rem; }
.tp-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tp-step-num {
  counter-increment: step;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A7FC4, #1250a0);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  content: counter(step);
}
.tp-step-num::after { content: counter(step); }
.tp-step-content h4 { font-size: .95rem; font-weight: 700; color: var(--tp-text); margin-bottom: .2rem; }
.tp-step-content p { font-size: .87rem; color: var(--tp-text-2); line-height: 1.6; }

/* ── Related Services ───────────────────────────────────────── */
.tp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (max-width: 640px) { .tp-related-grid { grid-template-columns: 1fr 1fr; } }
.tp-related-card {
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-sm);
  padding: 1rem;
  text-decoration: none;
  display: block;
  transition: var(--tp-transition);
  background: var(--tp-surface);
}
.tp-related-card:hover {
  border-color: var(--tp-brand);
  box-shadow: 0 4px 16px rgba(26,127,196,.12);
  transform: translateY(-2px);
}
.tp-related-card .icon { font-size: 1.5rem; margin-bottom: .4rem; }
.tp-related-card .title { font-size: .88rem; font-weight: 700; color: var(--tp-text); margin-bottom: .2rem; }
.tp-related-card .price { font-size: .78rem; color: var(--tp-brand); font-weight: 600; }

/* ── Section Heading ────────────────────────────────────────── */
.tp-section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--tp-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tp-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--tp-border), transparent);
}

/* ── Mobile nav fix ─────────────────────────────────────────── */
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; flex-direction: column; }

/* ── Print Styles ───────────────────────────────────────────── */
@media print {
  #tp-sticky-cta, #tp-dark-toggle, #tp-exit-popup, nav, footer { display: none !important; }
  body { padding-bottom: 0; }
  .tp-result-panel { display: block !important; }
}
