/* ERP Selection Guide Styles */

/* Hero Section */
.erp-selection-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.erp-selection-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('/articles/articleimages/ai-pattern.png') center/cover;
  opacity: 0.1;
}

.erp-selection-hero .hero-text h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 30px;
  font-weight: 300;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-cta {
  margin: 30px 0;
}

.free-offers {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.free-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-hero {
  padding: 15px 35px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #1e3a8a;
  font-weight: 600;
}

.btn-hero:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Process Overview */
.process-overview {
  padding: 80px 0;
  background: #f8fafc;
}

.process-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
}

.ai-process-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.ai-feature {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-top: 5px solid #3b82f6;
}

.ai-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
}

/* Selection Steps */
.selection-step {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid #3b82f6;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e2e8f0;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-title h2 {
  margin: 0 0 10px 0;
  color: #1e293b;
  font-size: 1.8rem;
}

.step-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  margin: 0;
}

/* Step 1 Specific Styles */
.warning-box {
  background: #fef3c7;
  border-left: 5px solid #f59e0b;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.warning-box i {
  color: #d97706;
  font-size: 1.5rem;
  margin-top: 3px;
}

.team-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.role-card {
  text-align: center;
  padding: 25px;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.role-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.role-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

.role-icon.finance {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.role-icon.operations {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.role-icon.hr {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.role-icon.sales {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.role-icon.it {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.role-icon.leadership {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.professionals-service {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 15px;
  padding: 30px;
  margin-top: 40px;
  border-left: 5px solid #3b82f6;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-header i {
  font-size: 2rem;
  color: #3b82f6;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #3b82f6;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

/* Step 2 Specific Styles */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.requirement-category {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  border-top: 4px solid #3b82f6;
}

.requirement-category h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  margin-bottom: 15px;
}

.requirement-category ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.requirement-category li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.requirement-category li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.failure-analysis {
  background: #fef2f2;
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  border-left: 5px solid #ef4444;
}

.failure-analysis h3 {
  color: #dc2626;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.failure-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.failure-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
}

.failure-item i {
  font-size: 2rem;
  color: #ef4444;
  margin-bottom: 15px;
}

.ai-srs-box {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  border-radius: 15px;
  padding: 40px;
  margin-top: 50px;
}

.ai-srs-header {
  text-align: center;
  margin-bottom: 40px;
}

.ai-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.2);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 1rem;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.ai-analysis {
  margin-bottom: 40px;
}

.analysis-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.point {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.point i {
  color: #60a5fa;
}

.srs-result {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.srs-result h4 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Step 3 Specific Styles */
.architecture-choices {
  margin: 40px 0;
}

.choice-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.choice-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.choice-card:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.choice-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.choice-tag {
  display: inline-block;
  padding: 5px 15px;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 15px;
}

.ai-evaluation-engine {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 15px;
  padding: 40px;
  margin-top: 50px;
}

.comparison-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.comparison-category {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.comparison-category h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  margin-bottom: 15px;
}

.engine-result {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border-left: 5px solid #10b981;
}

.engine-result i {
  color: #10b981;
  margin-right: 10px;
}

/* Step 4 Specific Styles */
.rfp-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.wrong-approach h3,
.right-approach h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.wrong-approach h3 {
  color: #dc2626;
}

.right-approach h3 {
  color: #10b981;
}

.approach-card {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.approach-card.wrong {
  background: #fef2f2;
  border: 2px solid #fecaca;
}

.approach-card.right {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
}

.approach-result {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.rfp-checklist {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  border: 2px solid #e2e8f0;
}

.checklist-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
}

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #3b82f6;
}

.vetting-process {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
}

.partner-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.partner-category {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.partner-category h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  margin-bottom: 15px;
}

.partner-category ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.partner-category li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.partner-category li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.vetting-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 2px solid #10b981;
  margin-top: 30px;
}

.vetting-badge i {
  color: #10b981;
  font-size: 1.5rem;
}

/* Step 5 Specific Styles */
.demo-warning {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #fef3c7;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
}

.warning-icon {
  width: 70px;
  height: 70px;
  background: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
}

.demo-scenarios {
  margin: 40px 0;
}

.scenario-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.scenario-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-top: 4px solid #3b82f6;
}

.scenario-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.scenario-header i {
  font-size: 2rem;
  color: #3b82f6;
}

.evaluation-guide {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
}

.evaluation-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.eval-point {
  background: white;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #3b82f6;
}

/* Step 6 Specific Styles */
.partnership-criteria {
  margin: 40px 0;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.criterion-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8fafc;
  border-radius: 10px;
}

.criterion-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.uae-specific {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
}

.uae-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.uae-req {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 10px;
}

.uae-req i {
  font-size: 2rem;
  color: #d97706;
}

.vendor-assessment {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
  border: 2px solid #e2e8f0;
}

.assessment-list {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

.assessment-list li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
}

.assessment-list li i {
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 1.2rem;
}

.assessment-note {
  padding: 20px;
  background: #f0fdf4;
  border-radius: 10px;
  border-left: 5px solid #10b981;
}

/* Professionals Lobby Difference */
.pl-difference {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  border-radius: 20px;
  padding: 60px 40px;
  margin: 60px 0;
}

.difference-header {
  text-align: center;
  margin-bottom: 50px;
}

.difference-header h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.mission-statement {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 50px;
  backdrop-filter: blur(10px);
}

.mission-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.service-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
}

.service-icon.free {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.industry-expertise {
  text-align: center;
  margin-top: 50px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.industry-tag {
  background: rgba(59, 130, 246, 0.2);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.industry-tag:hover {
  background: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 20px;
  padding: 60px 40px;
  margin: 60px 0;
}

.cta-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.cta-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.benefit i {
  color: #10b981;
}

.cta-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  color: #1e293b;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
}

.form-note {
  text-align: center;
  margin-top: 20px;
  color: #64748b;
  font-size: 0.9rem;
}

.form-note i {
  margin-right: 5px;
}

/* Sidebar Styles */
.steps-navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
}

.step-nav:hover {
  background: #e2e8f0;
  transform: translateX(5px);
}

.step-nav-number {
  width: 35px;
  height: 35px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

.free-assessment-card {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.assessment-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: #e2e8f0;
  color: #3b82f6;
}

.erp-comparison {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.erp-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
}

.erp-option:hover {
  background: #e2e8f0;
}

.erp-logo {
  width: 50px;
  height: 50px;
  background: #3b82f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: #e2e8f0;
  color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .erp-selection-hero .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-statement {
    flex-direction: column;
    text-align: center;
  }
  
  .ai-srs-box,
  .ai-evaluation-engine,
  .vetting-process {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .erp-selection-hero .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .selection-step {
    padding: 25px;
  }
  
  .process-stats,
  .ai-process-showcase,
  .requirements-grid,
  .choice-cards,
  .comparison-matrix,
  .partner-categories,
  .scenario-cards,
  .criteria-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .free-offers {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .demo-warning {
    flex-direction: column;
    text-align: center;
  }
  
  .warning-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .pl-difference,
  .final-cta {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .free-badge {
    width: 100%;
    justify-content: center;
  }
  
  .team-roles,
  .analysis-points,
  .checklist-items,
  .evaluation-points,
  .uae-requirements {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .role-card,
  .choice-card,
  .scenario-card,
  .service-card {
    padding: 20px 15px;
  }
}

/* Print Styles */
@media print {
  .erp-selection-hero,
  .process-overview,
  .sidebar,
  .final-cta,
  .whatsapp-float {
    display: none;
  }
  
  .selection-step {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .free-badge,
  .btn-hero,
  .service-cta {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000;
  }
  
  .ai-srs-box,
  .pl-difference,
  .final-cta {
    background: #fff !important;
    color: #000 !important;
  }
}

/* Accessibility */
@media (prefers-contrast: high) {
  .selection-step,
  .service-card,
  .approach-card,
  .comparison-category {
    border: 2px solid #000;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-item,
  .role-card,
  .choice-card,
  .service-card,
  .step-nav {
    transition: none;
  }
}