/* ── Consultation prep page styles ── */

.prep-hero {
  background: linear-gradient(135deg, #1B3A6B 0%, #1565C0 100%);
  padding: 64px 0 56px;
  color: #fff;
  text-align: center;
}
.prep-hero .breadcrumb { margin-bottom: 20px; opacity: .75; }
.prep-hero .breadcrumb a { color: #fff; }
.prep-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.prep-hero h1::after { display: none; }
.prep-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.prep-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.prep-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  margin-bottom: 28px;
}
.prep-hero-badge svg { flex-shrink: 0; }

.prep-intro {
  padding: 48px 0 8px;
  max-width: 720px;
  margin: 0 auto;
}
.prep-intro p {
  font-size: 1.05rem;
  color: #4B5563;
  line-height: 1.8;
  text-align: center;
}

.questions-section { padding: 40px 0 64px; }

.question-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(21,101,192,.07);
  border-left: 5px solid var(--primary);
  padding: 36px 40px;
  margin-bottom: 24px;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.question-card:hover {
  box-shadow: 0 6px 32px rgba(21,101,192,.12);
  transform: translateY(-1px);
}
.question-card:nth-child(2) { border-left-color: #C9A84C; }
.question-card:nth-child(3) { border-left-color: #2E7D32; }
.question-card:nth-child(4) { border-left-color: #7C3AED; }
.question-card:nth-child(5) { border-left-color: #0891B2; }

.question-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.question-number::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
}
.question-card:nth-child(1) .question-number::before { content: '1'; background: var(--primary); }
.question-card:nth-child(2) .question-number { color: #C9A84C; }
.question-card:nth-child(2) .question-number::before { content: '2'; background: #C9A84C; }
.question-card:nth-child(3) .question-number { color: #2E7D32; }
.question-card:nth-child(3) .question-number::before { content: '3'; background: #2E7D32; }
.question-card:nth-child(4) .question-number { color: #7C3AED; }
.question-card:nth-child(4) .question-number::before { content: '4'; background: #7C3AED; }
.question-card:nth-child(5) .question-number { color: #0891B2; }
.question-card:nth-child(5) .question-number::before { content: '5'; background: #0891B2; }

.question-card h2 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--dark);
  line-height: 1.35;
  font-style: italic;
}
.question-card h2::after { display: none; }

.question-card p { font-size: 15px; line-height: 1.75; color: #4B5563; margin-bottom: 12px; }
.question-card p:last-child { margin-bottom: 0; }

.why-it-matters {
  background: #f0f6ff;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #374151;
  border-left: 3px solid #93B4E8;
  margin-top: 14px;
}
.why-it-matters strong { color: var(--primary); }

.good-sign {
  background: #f0fdf4;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #14532d;
  border-left: 3px solid #86efac;
  margin-top: 12px;
}
.good-sign strong { color: #15803d; }

.thing-to-watch {
  background: #fffbeb;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #78350f;
  border-left: 3px solid #fcd34d;
  margin-top: 12px;
}
.thing-to-watch strong { color: #92400e; }

/* CTA section */
.prep-cta-section {
  background: linear-gradient(180deg, #F6F8FB 0%, #EEF3FA 100%);
  padding: 72px 0;
  text-align: center;
}
.prep-cta-section h2 { margin-bottom: 12px; }
.prep-cta-section > .container > p {
  font-size: 1.05rem;
  color: #4B5563;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.checklist-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 2px 24px rgba(21,101,192,.08);
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: left;
}
.checklist-box h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.checklist-box h3::after { display: none; }
.checklist-box h3 svg { flex-shrink: 0; }
.checklist-box ul { list-style: none; }
.checklist-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.5;
}
.checklist-box li:last-child { border-bottom: none; }
.checklist-box li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #93B4E8;
  border-radius: 4px;
  margin-top: 1px;
}

.print-btn {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.print-btn:hover { background: rgba(255,255,255,.25); }

.cta-subtext {
  margin-top: 20px !important;
  font-size: 13px !important;
  color: #6B7280 !important;
}

@media (max-width: 640px) {
  .question-card { padding: 28px 24px; }
  .checklist-box { padding: 28px 24px; }
}

@media print {
  header, footer, .prep-cta-section, .print-btn, nav, .prep-hero-actions { display: none !important; }
  .question-card { box-shadow: none; border: 1px solid #e5e7eb; break-inside: avoid; }
  .prep-hero { background: #1565C0 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { font-size: 12px; }
}
