/* ==========================================
   InvestLens — Startup Investment Analyzer
   Premium VC Tool Design
   ========================================== */

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a2e;
  --bg-input: #16162a;
  --border: #2a2a4a;
  --border-focus: #6366f1;
  --text: #e2e2f0;
  --text-muted: #8888aa;
  --text-dim: #5a5a7a;
  --primary: #6366f1;
  --primary-hover: #7c7ff7;
  --accent: #a855f7;
  --gradient: linear-gradient(135deg, #6366f1, #a855f7);
  --gradient-subtle: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.15));
  --green: #22c55e;
  --yellow: #eab308;
  --red: #ef4444;
  --orange: #f97316;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* ---- NAV ---- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  position: relative;
  z-index: 10;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
}

.nav-contact {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-contact:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99,102,241,0.25), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(168,85,247,0.1), transparent);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  max-width: 700px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.stat {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 2px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,102,241,0.35);
}

.btn-large { padding: 18px 36px; font-size: 1.1rem; border-radius: 14px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--text-muted); color: var(--text); }

.btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--text); }

.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-analyze {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ---- ERROR BANNER ---- */
.error-banner {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  padding: 16px 20px;
  border-radius: 12px;
  margin: 0 auto 24px;
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}
.error-banner small { opacity: 0.7; }

/* ---- FORM SECTION ---- */
.form-section {
  min-height: 100vh;
  padding: 40px 0 80px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}
.form-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 8px;
}
.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Progress */
.form-progress { margin-bottom: 40px; }
.progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 16px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  width: 25%;
  transition: width 0.4s ease;
}
.progress-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.step {
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.step.active {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(99,102,241,0.1);
}
.step.completed {
  color: var(--green);
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.08);
}

/* Form Steps */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp 0.3s ease; }

.step-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.step-icon { font-size: 1.6rem; }
.step-title h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.step-hint {
  width: 100%;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.form-grid { display: grid; gap: 20px; }
.field.full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
input::placeholder, textarea::placeholder { color: var(--text-dim); }
select { cursor: pointer; }
select option { background: var(--bg-card); }
textarea { resize: vertical; min-height: 60px; }

/* File upload */
.file-upload {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.file-upload:hover { border-color: var(--primary); background: rgba(99,102,241,0.05); }
.file-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.file-upload p { color: var(--text-muted); font-size: 0.9rem; }
.upload-link { color: var(--primary); font-weight: 500; }
.file-upload small { color: var(--text-dim); font-size: 0.8rem; }
.file-name { padding: 12px; color: var(--green); font-size: 0.9rem; font-weight: 500; }

.fallback-hint {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* ---- LOADING ---- */
.loading-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-content { text-align: center; }
.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}
.spinner-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.spinner-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loading-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}
.loading-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.loading-steps { display: flex; flex-direction: column; gap: 10px; max-width: 300px; margin: 0 auto; }
.loading-step {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 8px 16px;
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s;
}
.loading-step.active { color: var(--primary); background: rgba(99,102,241,0.1); }
.loading-step.done { color: var(--green); }

/* ---- RESULTS ---- */
.results-section {
  padding: 40px 0 80px;
  animation: fadeInUp 0.5s ease;
}

.results-header {
  margin-bottom: 32px;
}
.results-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
}
.results-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 4px;
}

/* Score Card */
.score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.score-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(99,102,241,0.08), transparent);
  pointer-events: none;
}
.score-visual {
  text-align: center;
  flex-shrink: 0;
  position: relative;
}
.score-ring {
  width: 150px;
  height: 150px;
  position: relative;
}
.score-ring svg { width: 100%; height: 100%; }
.score-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
}
.score-out-of {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: -2px;
  font-weight: 600;
}
.score-label {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 100px;
  display: inline-block;
}
.score-info { position: relative; }
.score-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.score-summary {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- VERDICT GRID ---- */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.verdict-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}
.verdict-card:hover { border-color: rgba(99,102,241,0.25); }

.verdict-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.verdict-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.strengths-icon { background: rgba(34,197,94,0.15); color: var(--green); }
.flags-icon { background: rgba(239,68,68,0.15); color: var(--red); }
.concerns-icon { background: rgba(234,179,8,0.15); color: var(--yellow); }
.recs-icon { background: rgba(99,102,241,0.15); color: var(--primary); }
.verdict-gavel { background: rgba(168,85,247,0.15); color: var(--accent); }

.verdict-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 12px;
  margin-bottom: 6px;
  border-radius: 8px;
  line-height: 1.5;
}
.strength-item {
  background: rgba(34,197,94,0.06);
  border-left: 3px solid var(--green);
}
.concern-item {
  background: rgba(234,179,8,0.06);
  border-left: 3px solid var(--yellow);
}

/* Strengths card */
.strengths-card { border-color: rgba(34,197,94,0.15); }

/* Red flags verdict card */
.red-flags-verdict-card { border-color: rgba(239,68,68,0.15); }

.red-flag-item {
  padding: 14px;
  background: rgba(239,68,68,0.04);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border-left: 3px solid;
}
.red-flag-item.high { border-left-color: var(--red); }
.red-flag-item.medium { border-left-color: var(--orange); }
.red-flag-item.low { border-left-color: var(--yellow); }
.red-flag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.red-flag-name { font-weight: 600; font-size: 0.88rem; color: #fff; }
.red-flag-severity {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 10px;
  border-radius: 100px;
}
.red-flag-severity.high { color: var(--red); background: rgba(239,68,68,0.15); }
.red-flag-severity.medium { color: var(--orange); background: rgba(249,115,22,0.15); }
.red-flag-severity.low { color: var(--yellow); background: rgba(234,179,8,0.15); }
.red-flag-detail { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* Concerns card */
.concerns-card { border-color: rgba(234,179,8,0.15); }

/* Recommendations card */
.recs-card { border-color: rgba(99,102,241,0.15); }

.priority-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text);
}
.priority-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Readiness */
.readiness-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.readiness-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 16px;
}
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.readiness-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
}
.readiness-icon { font-size: 1.2rem; }
.readiness-summary { font-size: 0.88rem; color: var(--text-muted); margin-top: 8px; line-height: 1.6; }

/* Sections */
.sections-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sections-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s;
  cursor: pointer;
}
.section-card:hover { border-color: rgba(99,102,241,0.3); }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-emoji { font-size: 1.3rem; }
.section-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}
.section-score-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
}
.section-body { display: none; margin-top: 16px; }
.section-card.open .section-body { display: block; animation: fadeIn 0.3s ease; }
.section-analysis { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.section-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.section-list h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.section-list.strengths h4 { color: var(--green); }
.section-list.weaknesses h4 { color: var(--orange); }
.section-list ul { list-style: none; }
.section-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.section-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.strengths li::before { background: var(--green); }
.weaknesses li::before { background: var(--orange); }
.section-recs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.section-recs h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-recs li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0 4px 16px;
  position: relative;
}
.section-recs li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Final Verdict */
.final-verdict-card {
  background: var(--gradient-subtle);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
}
.final-verdict-title {
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.final-verdict-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}
.fundraising-readiness-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 12px;
  border-top: 1px solid rgba(168,85,247,0.15);
}

/* Results CTA */
.results-cta {
  text-align: center;
  padding: 40px;
  background: var(--gradient-subtle);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-lg);
  margin-top: 16px;
}
.results-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-by { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 0.85rem; }
.footer-by a, .footer-contact a { color: var(--primary); text-decoration: none; }
.footer-by a:hover, .footer-contact a:hover { text-decoration: underline; }
.footer-contact { font-size: 0.85rem; color: var(--text-muted); }

/* ---- ANIMATIONS ---- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .score-card { flex-direction: column; text-align: center; padding: 28px; gap: 24px; }
  .score-info { text-align: center; }
  .verdict-grid { grid-template-columns: 1fr; }
  .section-lists { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 12px; text-align: center; }
  .readiness-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 20px; }
  .nav-brand { font-size: 1.1rem; }
  .nav-contact { font-size: 0.8rem; padding: 6px 12px; }
  .form-section { padding: 24px 0 60px; }
  .form-header h2 { font-size: 1.6rem; }
  .step-title h3 { font-size: 1.2rem; }
  .results-header h2 { font-size: 1.5rem; }
  .progress-steps { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .btn-large { padding: 14px 28px; font-size: 1rem; }
  .score-ring { width: 120px; height: 120px; }
  .score-number { font-size: 2.2rem; }
  .verdict-card { padding: 20px; }
}

/* Required star */
.required-star {
  color: #ef4444;
  font-weight: 600;
}

/* Questions and Next Steps cards */
.questions-card,
.next-steps-card {
  margin-top: 16px;
}
.question-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}
.question-item:last-child {
  border-bottom: none;
}
