/* ==========================================================================
   Leverage Tax Specialists — Public Acquisition & Smart Intake Styles
   Landing Hero, Service Selection, Multi-Step Intake, Document Dropzone
   ========================================================================== */

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, rgba(11, 27, 61, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate-300);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: var(--slate-400);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--slate-300);
}

.trust-item svg {
  color: var(--gold-400);
}

/* Hero Interactive Snapshot Card */
.hero-card-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.preview-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-card-header h4 {
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.preview-step-item {
  background: rgba(11, 27, 61, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-step-item.active {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(217, 119, 6, 0.1);
}

.preview-step-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.preview-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-step-item.active .preview-step-num {
  background: var(--gold-500);
  color: var(--white);
}

.preview-step-text {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

.preview-step-sub {
  font-size: 0.75rem;
  color: var(--slate-400);
}

/* Service Selection Section */
.service-section {
  padding: 4.5rem 0;
  background: var(--white);
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-heading .badge {
  margin-bottom: 0.75rem;
}

.section-heading h2 {
  font-size: 2.25rem;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--slate-600);
  font-size: 1rem;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.service-card.featured {
  border-color: var(--navy-900);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--slate-50) 100%);
  box-shadow: var(--shadow-lg);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.service-tagline {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-benefit-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.825rem;
  color: var(--navy-900);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-benefit-box svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

.service-card-action {
  margin-top: auto;
}

/* "I'm Not Sure" Diagnostic Card */
.diagnostic-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-850) 100%);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2.25rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.diagnostic-content h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.diagnostic-content p {
  color: var(--slate-300);
  font-size: 0.9rem;
}

/* ==========================================================================
   Multi-Step Smart Intake Container & Wizard
   ========================================================================== */

.intake-section {
  padding: 3.5rem 0 5rem;
  background: var(--slate-100);
  min-height: calc(100vh - 120px);
}

.intake-container-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Stepper Progress Header */
.intake-stepper-header {
  background: var(--navy-950);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stepper-progress-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.step-node {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--slate-400);
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--slate-300);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.step-node.active .step-indicator {
  background: var(--gold-500);
  border-color: var(--gold-400);
  color: var(--white);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.step-node.completed .step-indicator {
  background: var(--emerald-600);
  border-color: var(--emerald-500);
  color: var(--white);
}

.step-labels {
  display: flex;
  flex-direction: column;
}

.step-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-300);
}

.step-node.active .step-name {
  color: var(--gold-400);
}

.step-node.completed .step-name {
  color: var(--white);
}

.step-desc {
  font-size: 0.725rem;
  color: var(--slate-500);
}

.stepper-line-connector {
  position: absolute;
  top: 16px;
  left: 35px;
  right: 35px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.stepper-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--emerald-500) 100%);
  transition: width 0.4s ease;
}

/* Step Content Body */
.intake-step-body {
  padding: 2.5rem;
}

.step-intro {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.step-intro-left h3 {
  font-size: 1.45rem;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.step-intro-left p {
  color: var(--slate-600);
  font-size: 0.925rem;
}

.service-tag-badge {
  background: var(--navy-900);
  color: var(--gold-400);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Document Upload Checklist Dropzone */
.doc-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.doc-check-item {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  transition: all var(--transition-fast);
}

.doc-check-item.uploaded {
  border-color: var(--emerald-500);
  background: #F0FDF4;
}

.doc-info {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.doc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-check-item.uploaded .doc-icon {
  background: var(--emerald-100);
  color: var(--emerald-600);
  border-color: var(--emerald-500);
}

.doc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.doc-desc {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 0.2rem;
}

.doc-status-side {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.upload-btn-fake {
  position: relative;
  overflow: hidden;
}

.upload-btn-fake input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Security Trust Callout */
.security-callout {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--slate-300);
}

.sec-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.sec-badge svg {
  color: var(--emerald-500);
}

/* Review Step Summary Card */
.review-summary-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-label {
  font-size: 0.775rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--slate-500);
}

.review-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.review-liability-pill {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-600);
  font-family: var(--font-heading);
}

/* Stepper Footer Action Navigation */
.intake-footer-nav {
  padding: 1.5rem 2.5rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Submission Success Celebration */
.submission-success-card {
  text-align: center;
  padding: 3.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.success-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.submission-success-card h2 {
  font-size: 2.25rem;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.submission-success-card p {
  color: var(--slate-600);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* 4-Stage What Happens Next Timeline */
.next-steps-roadmap {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.roadmap-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.roadmap-step {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.roadmap-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.roadmap-step h5 {
  font-size: 0.9rem;
  color: var(--navy-900);
}

.roadmap-step p {
  font-size: 0.775rem;
  color: var(--slate-500);
  line-height: 1.4;
  margin-bottom: 0;
}
