/* ═══════════════════════════════════════
   TEST QUIZ — Isolated styles
   Uses .tq- prefix to avoid conflicts
   ═══════════════════════════════════════ */

/* Question block */
.qb {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.qb.on {
  opacity: 1;
  transform: translateY(0);
}
.qnum {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--cta);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  font-family: var(--sans);
}
.qtxt {
  font-family: var(--serif);
  font-size: clamp(17px, 2.5vw, 24px);
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 22px;
  font-weight: 300;
}

/* Options */
.opts {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.opt {
  padding: 13px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  color: var(--tmid);
  font-family: var(--sans);
  transition: border-color .2s, background .2s, color .2s;
  text-align: left;
  width: 100%;
  line-height: 1.5;
}
.opt:hover {
  border-color: var(--cta);
  background: rgba(139,115,92,.05);
  color: var(--text);
}
.opt.sel {
  border-color: var(--cta);
  background: var(--cta);
  color: #fff;
}

/* Silent reflection pause */
.silent-q {
  padding: 56px 40px;
  text-align: center;
  background: var(--bg2);
  margin: 40px 0;
  display: none;
}
.silent-q.show { display: block; }

/* Result box */
.result-box {
  padding: 56px 40px;
  background: var(--bg);
  border-left: 2px solid var(--cta);
  display: none;
  margin-top: 32px;
}
.result-box.show { display: block; }
.rlabel {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cta);
  display: block;
  margin-bottom: 12px;
  font-family: var(--sans);
}

/* Testimonios carousel */
.testi-carousel {
  overflow: hidden;
  position: relative;
}
.testi-track {
  display: flex;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.testi-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 0 8px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--cta);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  line-height: 1;
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.testi-btn:hover {
  border-color: var(--cta);
  background: var(--cta);
  color: var(--white);
}
.testi-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
  padding: 0;
  display: block;
}
.testi-dot.active {
  background: var(--cta);
  transform: scale(1.3);
}
