/* =====================================================
   ICOSIM — Test de Personnalité DISC
===================================================== */

/* ── Couleurs DISC ── */
:root {
  --disc-d:       #E05858;
  --disc-d-soft:  rgba(224, 88, 88, 0.15);
  --disc-i:       #E8953A;
  --disc-i-soft:  rgba(232, 149, 58, 0.15);
  --disc-s:       #4CAF82;
  --disc-s-soft:  rgba(76, 175, 130, 0.15);
  --disc-c:       #4A90C4;
  --disc-c-soft:  rgba(74, 144, 196, 0.15);
}

/* ── Layout général ── */
#test-app {
  min-height: calc(100vh - 80px);
  padding-top: 80px;
}

/* =====================================================
   INTRO / HERO
===================================================== */
.tp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/img-bois-3d.avif');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.tp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,0.85) 0%, rgba(30,95,116,0.4) 100%);
}

.tp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.tp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(126,200,212,0.12);
  border: 1px solid rgba(126,200,212,0.3);
  color: #7EC8D4;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.tp-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #E8EDF2;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.tp-hero__title span {
  background: linear-gradient(135deg, #7EC8D4, #3D8B9A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tp-hero__desc {
  font-size: 1.05rem;
  color: #8DA0B3;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tp-hero__conseil {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(126, 200, 212, 0.1);
  border: 1px solid rgba(126, 200, 212, 0.3);
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  text-align: left;
}

.tp-hero__conseil svg {
  flex-shrink: 0;
  color: #7EC8D4;
  margin-top: 2px;
}

.tp-hero__conseil span {
  color: #C8D8E8;
  font-size: 0.88rem;
  line-height: 1.55;
}

.tp-hero__meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tp-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.tp-meta-item strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7EC8D4;
}

.tp-meta-item span {
  font-size: 0.78rem;
  color: #8DA0B3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tp-btn-start {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #3D8B9A, #1E5F74);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 20px rgba(30,95,116,0.4);
}

.tp-btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,95,116,0.55);
}

/* =====================================================
   FORMULAIRE COORDONNÉES
===================================================== */
.tp-form-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: #0F1923;
}

.tp-form-card {
  width: 100%;
  max-width: 560px;
  background: #141E2B;
  border: 1px solid rgba(126,200,212,0.12);
  border-radius: 18px;
  padding: 2.5rem;
}

.tp-form-card__header {
  margin-bottom: 2rem;
}

.tp-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7EC8D4;
  margin-bottom: 0.5rem;
}

.tp-form-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #E8EDF2;
  margin-bottom: 0.5rem;
}

.tp-form-card p {
  font-size: 0.9rem;
  color: #8DA0B3;
  line-height: 1.6;
}

.tp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tp-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tp-field--full {
  grid-column: 1 / -1;
}

.tp-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #8DA0B3;
}

.tp-field input {
  background: #192534;
  border: 1px solid rgba(126,200,212,0.15);
  border-radius: 8px;
  color: #E8EDF2;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.tp-field input:focus {
  border-color: #3D8B9A;
}

.tp-field input.error {
  border-color: #E05858;
}

.tp-field input::placeholder {
  color: #4E6070;
}

.tp-form-notice {
  font-size: 0.78rem;
  color: #4E6070;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.tp-btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3D8B9A, #1E5F74);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 20px rgba(30,95,116,0.35);
}

.tp-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(30,95,116,0.5);
}

/* =====================================================
   QUESTIONS
===================================================== */
.tp-questions-wrap {
  min-height: calc(100vh - 80px);
  background: #0F1923;
  padding-bottom: 4rem;
}

/* Progress bar fixe */
.tp-progress-bar {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: #0F1923;
  border-bottom: 1px solid rgba(126,200,212,0.1);
  padding: 0.75rem 1.5rem;
}

.tp-progress-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tp-progress-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tp-progress-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #E8EDF2;
}

.tp-progress-sub {
  font-size: 0.72rem;
  color: #8DA0B3;
}

.tp-progress-track {
  flex: 2;
  background: rgba(126,200,212,0.1);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}

.tp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3D8B9A, #7EC8D4);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.tp-progress-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7EC8D4;
  min-width: 36px;
  text-align: right;
}

/* Section header */
.tp-section-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
}

.tp-section-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D8B9A;
  margin-bottom: 0.5rem;
}

.tp-section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #E8EDF2;
  margin-bottom: 0.5rem;
}

.tp-section-header p {
  font-size: 0.9rem;
  color: #8DA0B3;
}

/* Scale legend */
.tp-scale-legend {
  max-width: 820px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #4E6070;
}

/* Question cards */
.tp-questions-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tp-q-card {
  background: #141E2B;
  border: 1px solid rgba(126,200,212,0.1);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}

.tp-q-card.answered {
  border-color: rgba(126,200,212,0.25);
}

.tp-q-card.unanswered-error {
  border-color: #E05858;
}

.tp-q-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tp-q-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: #4E6070;
  background: #192534;
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
  margin-top: 0.1rem;
}

.tp-q-text {
  font-size: 0.95rem;
  color: #C8D8E8;
  line-height: 1.55;
}

/* Échelle 1-7 */
.tp-scale {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tp-scale-btn {
  flex: 1;
  min-width: 36px;
  height: 38px;
  background: #192534;
  border: 1.5px solid rgba(126,200,212,0.15);
  border-radius: 8px;
  color: #8DA0B3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-scale-btn:hover {
  border-color: #3D8B9A;
  color: #7EC8D4;
  background: rgba(61,139,154,0.1);
}

.tp-scale-btn.selected {
  background: linear-gradient(135deg, #3D8B9A, #1E5F74);
  border-color: #3D8B9A;
  color: #fff;
  box-shadow: 0 2px 10px rgba(30,95,116,0.35);
}

/* Navigation sections */
.tp-nav-btns {
  max-width: 820px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.tp-btn-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #192534;
  border: 1px solid rgba(126,200,212,0.2);
  color: #8DA0B3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tp-btn-nav:hover {
  border-color: #3D8B9A;
  color: #7EC8D4;
}

.tp-btn-nav--next {
  background: linear-gradient(135deg, #3D8B9A, #1E5F74);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 15px rgba(30,95,116,0.35);
}

.tp-btn-nav--next:hover {
  color: #fff;
  box-shadow: 0 5px 20px rgba(30,95,116,0.5);
  transform: translateY(-1px);
}

.tp-nav-center {
  font-size: 0.8rem;
  color: #4E6070;
}

/* Message erreur validation */
.tp-validation-msg {
  max-width: 820px;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  color: #E05858;
  text-align: center;
  display: none;
}

.tp-validation-msg.visible {
  display: block;
}

/* =====================================================
   LOADING
===================================================== */
.tp-loading {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: #0F1923;
}

.tp-spinner {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(126,200,212,0.15);
  border-top-color: #3D8B9A;
  border-radius: 50%;
  animation: tp-spin 0.9s linear infinite;
}

@keyframes tp-spin {
  to { transform: rotate(360deg); }
}

.tp-loading p {
  font-size: 1rem;
  color: #8DA0B3;
}

.tp-loading strong {
  color: #7EC8D4;
}

/* =====================================================
   RÉSULTATS
===================================================== */
.tp-results {
  background: #0F1923;
  padding-bottom: 5rem;
}

/* Hero résultats */
.tp-results-hero {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, #141E2B 0%, #0F1923 100%);
  border-bottom: 1px solid rgba(126,200,212,0.1);
}

.tp-results-hero__badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D8B9A;
  margin-bottom: 1rem;
}

.tp-results-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #E8EDF2;
  margin-bottom: 0.5rem;
}

.tp-results-hero__sub {
  font-size: 0.95rem;
  color: #8DA0B3;
  margin-bottom: 2rem;
}

/* Badge profil dominant */
.tp-disc-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  border: 2px solid;
  margin-bottom: 0.75rem;
}

.tp-disc-badge__letter {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
}

.tp-disc-badge__info {
  text-align: left;
}

.tp-disc-badge__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #E8EDF2;
}

.tp-disc-badge__tagline {
  font-size: 0.82rem;
  color: #8DA0B3;
}

/* Email confirmation */
.tp-email-confirm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #4CAF82;
  margin-top: 0.5rem;
}

.tp-email-confirm svg {
  flex-shrink: 0;
}

/* Sections résultats */
.tp-results-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tp-result-section {
  background: #141E2B;
  border: 1px solid rgba(126,200,212,0.1);
  border-radius: 18px;
  padding: 1.75rem;
}

.tp-result-section h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D8B9A;
  margin-bottom: 1.25rem;
}

/* Barres DISC */
.tp-disc-bars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tp-disc-row {
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  align-items: center;
  gap: 0.75rem;
}

.tp-disc-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #C8D8E8;
  font-weight: 500;
}

.tp-disc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tp-bar-track {
  background: rgba(126,200,212,0.08);
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
}

.tp-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease;
}

.tp-disc-pct {
  font-size: 0.88rem;
  font-weight: 700;
  color: #E8EDF2;
  text-align: right;
}

/* Dominant highlight */
.tp-disc-row.dominant .tp-disc-label {
  font-weight: 700;
  color: #E8EDF2;
}

.tp-disc-row.dominant .tp-bar-track {
  height: 13px;
}

/* Barres sections */
.tp-section-bars {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tp-section-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.tp-section-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tp-section-name {
  font-size: 0.85rem;
  color: #C8D8E8;
  font-weight: 500;
}

.tp-section-bar-track {
  background: rgba(126,200,212,0.08);
  border-radius: 100px;
  height: 7px;
  overflow: hidden;
}

.tp-section-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3D8B9A, #7EC8D4);
  border-radius: 100px;
  transition: width 1s ease;
}

.tp-section-pct {
  font-size: 0.85rem;
  font-weight: 700;
  color: #7EC8D4;
  min-width: 40px;
  text-align: right;
}

/* Analyse */
.tp-analysis-text {
  font-size: 0.95rem;
  color: #8DA0B3;
  line-height: 1.75;
}

/* Listes forces / axes */
.tp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #8DA0B3;
  line-height: 1.5;
}

.tp-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3D8B9A;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* Questions à creuser */
.tp-questions-creuser {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tp-q-creuser {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: #192534;
  border-radius: 10px;
  border-left: 3px solid #3D8B9A;
}

.tp-q-creuser__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3D8B9A;
  min-width: 22px;
  margin-top: 0.1rem;
}

.tp-q-creuser__text {
  font-size: 0.88rem;
  color: #C8D8E8;
  line-height: 1.55;
}

/* Note recruteur */
.tp-recruiter-note {
  font-size: 0.78rem;
  color: #4E6070;
  margin-top: 0.75rem;
  line-height: 1.5;
  font-style: italic;
}

/* CTA bas de page */
.tp-results-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.tp-results-cta p {
  font-size: 0.9rem;
  color: #8DA0B3;
  margin-bottom: 1rem;
}

.tp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(126,200,212,0.3);
  color: #7EC8D4;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.tp-btn-outline:hover {
  background: rgba(126,200,212,0.08);
  border-color: #7EC8D4;
}

/* =====================================================
   QUESTION PAR QUESTION
===================================================== */
.tp-single-wrap {
  min-height: calc(100vh - 80px);
  background: #0F1923;
  display: flex;
  flex-direction: column;
}

.tp-single-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.tp-single-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.78rem;
  color: #4E6070;
  margin-bottom: 2.5rem;
}

.tp-single-meta span:first-child {
  color: #3D8B9A;
  font-weight: 600;
}

.tp-single-text {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #E8EDF2;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 3rem;
}

.tp-single-scale-wrap {
  width: 100%;
  margin-bottom: 2.5rem;
}

.tp-single-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #4E6070;
  margin-bottom: 0.75rem;
}

.tp-single-scale {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.tp-single-scale .tp-scale-btn {
  width: 52px;
  height: 52px;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.15s ease;
}

.tp-single-scale .tp-scale-btn.selected {
  transform: scale(1.12);
}

.tp-single-scale .tp-scale-btn.flash {
  background: linear-gradient(135deg, #3D8B9A, #1E5F74);
  border-color: #3D8B9A;
  color: #fff;
  transform: scale(1.18);
  box-shadow: 0 4px 20px rgba(30,95,116,0.5);
}

.tp-single-back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: #4E6070;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.tp-single-back:hover { color: #8DA0B3; }

/* Transition bridge entre sections */
.tp-bridge {
  min-height: calc(100vh - 80px);
  background: #0F1923;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.tp-bridge__card {
  background: #141E2B;
  border: 1px solid rgba(126,200,212,0.15);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.tp-bridge__check {
  width: 56px;
  height: 56px;
  background: rgba(76,175,130,0.15);
  border: 2px solid rgba(76,175,130,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #4CAF82;
}

.tp-bridge__done {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4CAF82;
  margin-bottom: 0.5rem;
}

.tp-bridge__next-label {
  font-size: 0.75rem;
  color: #4E6070;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tp-bridge__next-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8EDF2;
  margin-bottom: 0.5rem;
}

.tp-bridge__next-desc {
  font-size: 0.88rem;
  color: #8DA0B3;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 640px) {
  .tp-form-grid {
    grid-template-columns: 1fr;
  }

  .tp-form-card {
    padding: 1.75rem 1.25rem;
  }

  .tp-disc-row {
    grid-template-columns: 100px 1fr 44px;
  }

  .tp-q-card {
    padding: 1rem;
  }

  .tp-scale-btn {
    min-width: 32px;
    height: 34px;
    font-size: 0.8rem;
  }

  .tp-nav-btns {
    flex-wrap: wrap;
  }

  .tp-hero__meta {
    gap: 1.25rem;
  }

  .tp-progress-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .tp-progress-track {
    width: 100%;
  }
}
