#questions {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s ease;
  padding-top: 16px;
}

#questions h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  color: var(--text);
  order: 0;
}

.questions-subheading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 0 0 28px;
  order: 0;
}

/* --- Info Bar --- */

.info-bar {
  display: none !important;
}

/* --- Review Section --- */

.review-section {
  position: relative;
  max-width: 780px;
  width: 100%;
  margin: 0 auto 42px;
  text-align: left;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow:
    0 4px 20px rgb(0 0 0 / 0.05),
    0 1px 3px rgb(0 0 0 / 0.03);
  overflow: hidden;
  order: 5;
}

.review-heading {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
  margin: 0;
  padding: 22px 28px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-heading::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
}

.review-context-note {
  margin: 0;
  padding: 5px 28px 14px;
  font-size: 0.76rem;
  color: var(--text-tertiary);
  font-style: italic;
}

.review-text {
  margin: 0;
  padding: 0 28px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.78;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  position: relative;
}

.review-blur {
  filter: blur(6px);
  user-select: none;
  transition: filter 0.4s ease;
  opacity: 0.55;
}

.review-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px 22px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgb(248 250 252 / 0.95);
  border-top: 1px dashed #cbd5e1;
  margin-top: 16px;
}

.review-overlay::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #cbd5e1;
  margin-bottom: 4px;
}

.review-lock {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  flex-shrink: 0;
  opacity: 0.7;
}

/* --- Questions Subtitle --- */

#questions .questions-subtitle {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  line-height: 1.4;
  order: 1;
}

.questions-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  margin: 0 auto 44px;
  text-align: left;
  list-style: none;
  padding: 0;
  order: 2;
}

.questions-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  height: 540px;
  overflow: hidden;
}

.questions-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.07);
}

.questions-list li:nth-child(1) { animation: fadeIn 0.5s ease 0.1s both; }
.questions-list li:nth-child(2) { animation: fadeIn 0.5s ease 0.2s both; }
.questions-list li:nth-child(3) { animation: fadeIn 0.5s ease 0.3s both; }
.questions-list li:nth-child(4) { animation: fadeIn 0.5s ease 0.4s both; }
.questions-list li:nth-child(5) { animation: fadeIn 0.5s ease 0.5s both; }

.questions-list .q-num {
  display: none;
}

/* --- Question Teaser (answer preview) --- */

.q-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.q-answers-preview {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.q-answer-blur {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.q-provider-badge {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 1px;
}

.q-answer-text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  filter: blur(5px);
  user-select: none;
  opacity: 0.5;
}

/* --- Process Section --- */

.process-section {
  max-width: 780px;
  width: 100%;
  margin: 0 auto 48px;
  order: 4;
}

.process-label {
  color: var(--text-secondary) !important;
  margin-bottom: 24px !important;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  position: relative;
  padding-left: 44px;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
  border-radius: 1px;
}

.process-steps li {
  position: relative;
  padding: 0 0 32px 28px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  counter-increment: step;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.process-steps li:last-child {
  padding-bottom: 0;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: -44px;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 3px 12px rgb(0 0 0 / 0.12);
  z-index: 1;
}

.process-steps li::after {
  content: '';
  position: absolute;
  left: -26px;
  top: 42px;
  height: calc(100% - 10px);
  width: 1px;
  background: var(--border);
}

/* --- CTA Section --- */

#questions .cta-wrapper {
  text-align: center;
  margin-bottom: 42px;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  padding: 32px 32px 28px;
  order: 3;
}

#questions .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 52px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
  box-shadow:
    0 4px 18px rgb(37 99 235 / 0.3),
    0 0 0 0 rgb(37 99 235 / 0);
  position: relative;
  overflow: hidden;
}

#questions .cta-btn::after {
  content: '\2192';
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
  position: absolute;
  right: 28px;
  pointer-events: none;
}

#questions .cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgb(37 99 235 / 0.38),
    0 0 0 4px rgb(37 99 235 / 0.08);
  gap: 14px;
  padding-right: 60px;
}

#questions .cta-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

#questions .cta-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgb(37 99 235 / 0.25);
  transition: all 0.08s ease;
}

.q-cta-subtext {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 14px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  font-weight: 500;
  position: relative;
}

.inline-sample-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.inline-sample-link:hover {
  color: var(--primary-hover);
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .questions-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .questions-list li {
    height: auto;
  }
}

@media (max-width: 640px) {
  #questions h2 {
    font-size: 1.35rem;
  }

  .questions-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .questions-list li:nth-child(n+4) {
    display: none;
  }

  .questions-list li {
    height: auto;
    padding: 14px 14px;
    font-size: 0.82rem;
    border-radius: 12px;
  }

  .q-text {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .q-answers-preview {
    margin-top: 8px;
    padding-top: 8px;
    gap: 6px;
  }

  .q-provider-badge {
    width: 16px;
    height: 16px;
    margin-top: 1px;
  }

  .q-answer-text {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .process-steps {
    padding-left: 36px;
  }

  .process-steps::before {
    left: 14px;
  }

  .process-steps li {
    padding: 0 0 24px 22px;
    font-size: 0.84rem;
  }

  .process-steps li::before {
    left: -36px;
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
    background: #2563eb;
  }

  .process-steps li::after {
    left: -20px;
    top: 38px;
  }

  .review-heading {
    padding: 18px 18px 0;
    font-size: 0.72rem;
  }

  .review-context-note {
    padding: 5px 18px 12px;
  }

  .review-text {
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .review-overlay {
    padding: 18px 16px;
  }

  #questions .cta-wrapper {
    padding: 24px 16px 20px;
  }

  #questions .cta-btn {
    padding: 16px 36px;
    font-size: 1rem;
  }

  #questions .cta-btn::after {
    right: 18px;
  }

  #questions .cta-btn:hover {
    padding-right: 48px;
  }
}
