/* ==========================================================================
   Leverage Tax Specialists — BranDive Sales Presentation Mode Styles
   Before vs After Flow, ROI Calculator, Discovery Questionnaire
   ========================================================================== */

.pitch-layout {
  background: var(--slate-100);
  min-height: calc(100vh - 45px);
  padding: 2.5rem 0 5rem;
}

.pitch-hero-banner {
  background: linear-gradient(135deg, var(--navy-950) 0%, #0D2040 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pitch-hero-title h1 {
  color: var(--white);
  font-size: 2.15rem;
  margin-bottom: 0.5rem;
}

.pitch-hero-title p {
  color: var(--slate-300);
  font-size: 1rem;
  max-width: 680px;
}

/* Pitch Tab Nav */
.pitch-tab-nav {
  display: flex;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 0.4rem;
  gap: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.pitch-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.pitch-tab-btn:hover {
  background: var(--slate-50);
  color: var(--navy-900);
}

.pitch-tab-btn.active {
  background: var(--navy-900);
  color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}

/* Before vs Proposed Flow Comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.comparison-col {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--slate-200);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.comparison-col.before {
  border-color: #FECDD3;
  background: #FFF1F2;
}

.comparison-col.after {
  border-color: #A7F3D0;
  background: #F0FDF4;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-header h3 {
  font-size: 1.25rem;
}

.flow-step-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.flow-step-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
}

.flow-arrow-down {
  text-align: center;
  color: var(--slate-400);
  font-size: 1rem;
}

.comparison-col.before .flow-step-card {
  border-left: 4px solid var(--rose-500);
}

.comparison-col.after .flow-step-card {
  border-left: 4px solid var(--emerald-500);
}

/* ROI & Value Calculator */
.roi-calculator-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.roi-slider-group {
  margin-bottom: 1.75rem;
}

.roi-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.roi-slider {
  width: 100%;
  accent-color: var(--gold-500);
  cursor: pointer;
}

.roi-results-box {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.roi-results-box h4 {
  color: var(--slate-300);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.roi-highlight-stat {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gold-400);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.roi-metrics-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
  text-align: left;
}

.roi-sub-metric h6 {
  color: var(--slate-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.roi-sub-metric .val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

/* Strategic Questions Checklist */
.discovery-questions-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.question-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.question-item h5 {
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.question-item p {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin: 0;
}
