/* EIN Business Value Accelerator — Main Stylesheet */

:root {
  --ein-blue: #1A3C6E;
  --ein-accent: #2E75B6;
  --ein-light: #E8F0FB;
  --ein-gold: #F0A500;
}

/* ─── GLOBAL ─── */
body { font-family: 'Arial', sans-serif; }

/* ─── NAVBAR ─── */
.navbar { padding: 14px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }

/* ─── LANDING PAGE ─── */
.hero-section {
  background: linear-gradient(135deg, #0d2548 0%, #1A3C6E 50%, #2E75B6 100%);
  color: #fff;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.min-vh-85 { min-height: 85vh; }
.badge-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}
.hero-title .highlight {
  color: var(--ein-gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.6;
}
.hero-stats { gap: 32px; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--ein-gold); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

.btn-start {
  background: var(--ein-gold);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-start:hover { background: #d4920a; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,165,0,0.4); }

/* Score Preview Card */
.score-preview-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-width: 360px;
  margin: 0 auto;
}
.preview-header { font-size: 12px; text-transform: uppercase; color: #999; font-weight: bold; letter-spacing: 1px; }
.preview-score { font-size: 64px; font-weight: 900; color: var(--ein-blue); line-height: 1; margin: 8px 0 4px; }
.preview-score span { font-size: 24px; color: #999; }
.preview-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.preview-row.highlight-row { background: #fff5f5; margin: 0 -28px; padding: 10px 28px; border-bottom: none; }
.preview-gaps { display: flex; flex-wrap: wrap; gap: 6px; }
.gap-tag { background: #fff3f3; color: #c0392b; font-size: 11px; padding: 4px 10px; border-radius: 12px; border: 1px solid #f5c6cb; }
.preview-cta { font-size: 12px; color: var(--ein-accent); font-weight: bold; }

/* How It Works */
.section-title { font-size: 2rem; font-weight: 800; color: var(--ein-blue); }
.step-card { background: #fff; border-radius: 12px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid #f0f0f0; }
.step-number { width: 52px; height: 52px; background: var(--ein-blue); color: #fff; border-radius: 50%; font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.feature-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; height: 100%; }
.feature-icon { width: 44px; height: 44px; background: var(--ein-light); color: var(--ein-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* ─── ASSESSMENT PAGE ─── */
.assessment-body { background: #f8faff; }
.assessment-progress { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.dimension-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.dim-pill {
  font-size: 11px; padding: 3px 10px; border-radius: 12px;
  background: #e9ecef; color: #666; border: 1px solid #dee2e6; transition: all 0.2s;
}
.dim-pill.active { background: var(--ein-blue); color: #fff; border-color: var(--ein-blue); }
.dim-pill.done  { background: #d4edda; color: #155724; border-color: #c3e6cb; }

.question-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 720px;
  margin: 0 auto;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

.question-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dim-badge { background: var(--ein-light); color: var(--ein-blue); font-size: 12px; font-weight: bold; padding: 4px 12px; border-radius: 12px; }
.q-counter { font-size: 12px; color: #999; font-weight: bold; }
.question-text { font-size: 1.4rem; font-weight: 800; color: #1a1a2e; line-height: 1.4; }
.question-note { font-size: 13px; color: #888; background: #f8f9fa; border-radius: 8px; padding: 8px 14px; margin-top: 12px; }

.options-grid { display: flex; flex-direction: column; gap: 10px; }
.option-item {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid #e9ecef; border-radius: 10px; padding: 14px 16px;
  cursor: pointer; transition: all 0.18s; background: #fff;
}
.option-item:hover { border-color: var(--ein-accent); background: var(--ein-light); }
.option-item.selected { border-color: var(--ein-blue); background: var(--ein-light); box-shadow: 0 0 0 3px rgba(26,60,110,0.1); }
.option-letter {
  width: 32px; height: 32px; background: #e9ecef; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-size: 14px; color: #555; flex-shrink: 0; transition: all 0.18s;
}
.option-item.selected .option-letter { background: var(--ein-blue); color: #fff; }
.option-text { flex: 1; font-size: 15px; color: #333; font-weight: 500; }
.option-check { color: var(--ein-blue); opacity: 0; transition: opacity 0.15s; font-size: 16px; }
.option-item.selected .option-check { opacity: 1; }

.question-nav { display: flex; justify-content: space-between; align-items: center; }
.btn-next {
  background: var(--ein-blue); color: #fff; border: none;
  padding: 12px 28px; border-radius: 8px; font-weight: bold; font-size: 15px;
  transition: all 0.2s;
}
.btn-next:not(:disabled):hover { background: #0d2548; transform: translateY(-1px); }
.btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Email capture */
.email-capture-icon {
  width: 80px; height: 80px; background: var(--ein-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--ein-blue); margin: 0 auto;
}

/* ─── RESULTS PAGE ─── */
.results-body { background: #f4f6fb; }
.results-greeting { background: var(--ein-blue); color: #fff; border-radius: 12px; padding: 24px 28px; margin-bottom: 4px; }
.results-greeting p { color: rgba(255,255,255,0.8); margin: 0; }

.result-card {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07); border: 1px solid #eef0f5;
}
.card-label { font-size: 11px; text-transform: uppercase; color: #999; font-weight: bold; letter-spacing: 1px; margin-bottom: 4px; }
.card-section-title { font-size: 14px; font-weight: bold; color: var(--ein-blue); border-bottom: 2px solid var(--ein-light); padding-bottom: 10px; margin-bottom: 16px; }

/* Gauge */
.score-gauge-wrap { position: relative; width: 160px; margin: 12px auto; }
.gauge-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -44%); text-align: center; }
.gauge-number { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.gauge-max { font-size: 13px; color: #999; }
.score-band-badge { display: inline-block; padding: 4px 14px; border-radius: 12px; font-size: 12px; font-weight: bold; }
.score-band-badge.badge-success { background: #d4edda; color: #155724; }
.score-band-badge.badge-primary { background: var(--ein-light); color: var(--ein-blue); }
.score-band-badge.badge-warning { background: #fff3cd; color: #856404; }
.score-band-badge.badge-danger  { background: #f8d7da; color: #721c24; }

.value-number { font-size: 2rem; font-weight: 900; margin: 8px 0; }
.value-bar-wrap { height: 8px; background: #e9ecef; border-radius: 4px; overflow: hidden; }
.value-bar-fill { height: 100%; border-radius: 4px; }
.value-bar-fill.current { background: #1E7E34; }
.value-bar-fill.potential { background: var(--ein-blue); }
.gap-card { border: 2px solid #f8d7da; }
.gap-alert { background: #fff3cd; border-radius: 6px; padding: 8px 12px; font-size: 12px; color: #856404; font-weight: bold; }

/* Gap items */
.gap-item { border: 1px solid #e9ecef; border-radius: 10px; overflow: hidden; border-left: 4px solid #C0392B; }
.gap-header { display: flex; align-items: center; gap: 14px; padding: 14px 16px; }
.gap-number { width: 32px; height: 32px; background: #C0392B; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.gap-info { flex: 1; }
.gap-question { font-weight: bold; font-size: 14px; color: #333; }
.gap-answer { font-size: 12px; color: #C0392B; margin-top: 2px; }
.gap-impact { font-size: 18px; }
.gap-action { background: #f8f9fa; padding: 10px 16px; font-size: 13px; border-top: 1px solid #e9ecef; display: flex; align-items: center; }

.cta-card { background: linear-gradient(135deg, var(--ein-blue), #2E75B6); color: #fff; }
.cta-card p { color: rgba(255,255,255,0.85); }
.metric-lg { font-size: 2rem; font-weight: 900; }
