/* ============================================================
   Lilly HOME — Assessment Simulator Styles
   ============================================================ */

.lh-simulator-section {
  padding: 5rem 0;
  background: #fff;
  font-family: var(--font-sans);
}
.lh-simulator-section .lh-sim-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.lh-simulator-section .lh-sim-header .lh-sim-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  font-family: var(--font-display); margin-bottom: 0.5rem;
}
.lh-simulator-section .lh-sim-header h2 {
  font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.75rem;
}
.lh-simulator-section .lh-sim-header p {
  color: var(--gray-500); font-size: 0.875rem; max-width: 32rem; margin: 0 auto;
}

/* ── Card ── */
#lh-simulator {
  background: #fff; border-radius: 1.5rem;
  border: 1px solid var(--gray-100); box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2rem 2.5rem; max-width: 640px; margin: 0 auto;
  min-height: 300px;
}

/* ── Step dots ── */
.lh-sim-steps {
  display: flex; align-items: center; gap: 0.375rem; margin-bottom: 1.5rem;
}
.lh-sim-dot {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  background: var(--gray-200); color: var(--gray-400);
  transition: background 0.2s, color 0.2s;
}
.lh-sim-dot.active { background: var(--navy); color: #fff; }
.lh-sim-dot.done   { background: var(--gold); color: #fff; }
.lh-sim-dot-line {
  flex: 1; height: 2px; background: var(--gray-200); border-radius: 2px;
  transition: background 0.2s;
}
.lh-sim-dot-line.done { background: var(--gold); }
.lh-sim-step-label { font-size: 0.75rem; color: var(--gray-400); margin-left: 0.5rem; white-space: nowrap; }

/* ── Question ── */
.lh-sim-q {
  font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.25rem;
}

/* ── Choice buttons ── */
.lh-sim-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.lh-sim-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
@media (max-width: 480px) {
  .lh-sim-grid-2, .lh-sim-grid-3 { grid-template-columns: 1fr 1fr; }
}
.lh-sim-choice {
  padding: 0.75rem 0.5rem; border-radius: 0.75rem;
  border: 2px solid var(--gray-200); background: #fff;
  font-size: 0.8125rem; font-weight: 500; color: var(--gray-600);
  cursor: pointer; text-align: left; line-height: 1.4;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  font-family: var(--font-sans);
}
.lh-sim-choice:hover { border-color: var(--gray-400); }
.lh-sim-choice.selected {
  border-color: var(--navy); background: #eef2f8; color: var(--navy); font-weight: 700;
}

/* ── Navigation ── */
.lh-sim-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2rem;
}
.lh-sim-back {
  font-size: 0.875rem; font-weight: 500; color: var(--gray-400);
  background: none; border: none; cursor: pointer; transition: color 0.2s;
  font-family: var(--font-sans);
}
.lh-sim-back:hover { color: var(--gray-600); }
.lh-sim-next {
  padding: 0.75rem 2rem; border-radius: 9999px;
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: 0.9375rem; border: none; cursor: pointer;
  transition: opacity 0.2s; font-family: var(--font-sans);
  box-shadow: 0 2px 12px rgba(30,58,95,0.25);
}
.lh-sim-next:hover { opacity: 0.9; }
.lh-sim-next.disabled, .lh-sim-next:disabled {
  background: var(--gray-300); cursor: not-allowed; box-shadow: none;
}

/* ── Result ── */
.lh-sim-result { text-align: center; }
.lh-sim-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-family: var(--font-display); margin-bottom: 0.5rem; }
.lh-sim-result-sub { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1rem; }
.lh-sim-result-price {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.lh-sim-result-price span { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); }
.lh-sim-result-price .sep { font-size: 1.25rem; color: var(--gray-400); }
.lh-sim-note { font-size: 0.75rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.lh-sim-yield-box { background: #fff9ec; border: 1px solid #f0d080; border-radius: 1rem; padding: 1rem; margin-bottom: 1rem; }
.lh-sim-yield-title { font-size: 0.8125rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.lh-sim-yield-range { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.lh-sim-yield-range span { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.lh-sim-yield-note { font-size: 0.75rem; color: var(--gray-500); }
.lh-sim-yield-rent { font-size: 0.8125rem; color: var(--gray-600); margin-top: 0.5rem; }
.lh-sim-basis { background: #eef2f8; border-radius: 1rem; padding: 1rem; text-align: left; margin-bottom: 1.5rem; font-size: 0.8125rem; color: var(--gray-600); }
.lh-sim-basis-title { font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.lh-sim-area-comment, .lh-sim-age-comment { margin-top: 0.5rem; line-height: 1.7; }
.lh-sim-cta-wrap { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.lh-sim-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 2.5rem; border-radius: 9999px;
  background: var(--gold); color: var(--navy-dark);
  font-weight: 700; font-size: 0.9375rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
  transition: opacity 0.2s; font-family: var(--font-sans);
}
.lh-sim-cta-btn:hover { opacity: 0.9; }
.lh-sim-reset-btn {
  background: none; border: 2px solid var(--navy); color: var(--navy);
  padding: 0.75rem 2rem; border-radius: 9999px; font-weight: 700;
  cursor: pointer; font-family: var(--font-sans); transition: background 0.2s;
}
.lh-sim-reset-btn:hover { background: var(--off-white); }
.lh-sim-other { text-align: center; padding: 1rem 0; }
.lh-sim-other h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 1rem; }
.lh-sim-other p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 1.5rem; }

