/* Web ERP Advantages Styles */
.web-erp-hero {
  position: relative;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  overflow: hidden;
}

.web-erp-hero .hero-image-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(30,60,114,0.8) 0%, rgba(42,82,152,0.4) 100%);
}

/* Market Snapshot */
.market-snapshot {
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.snapshot-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.snapshot-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.snapshot-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 0.5rem;
}

.snapshot-item .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.market-insights {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid #1e3c72;
}

.market-insights p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* AI Workflow */
.ai-workflow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-left: 4px solid #1e3c72;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #1e3c72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #1e3c72;
  margin: 0 0 0.5rem 0;
}

.step-content p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.ai-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.ai-benefit {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-top: 4px solid #1e3c72;
}

.ai-benefit i {
  font-size: 2rem;
  color: #1e3c72;
  margin-bottom: 1rem;
  display: block;
}

.ai-benefit h4 {
  color: #1e3c72;
  margin: 0 0 0.5rem 0;
}

.ai-benefit p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* Comparison Table */
.comparison-container {
  overflow-x: auto;
  margin: 2rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.comparison-table th {
  background: #1e3c72;
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 1.2rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .success {
  color: #4CAF50;
}

.comparison-table .danger {
  color: #f44336;
}

.comparison-table .warning {
  color: #FF9800;
}

.advantage-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.advantage-badge.web {
  background: #4CAF50;
  color: white;
}

.advantage-badge.desktop {
  background: #f44336;
  color: white;
}

.advantage-badge.tie {
  background: #FF9800;
  color: white;
}

.comparison-summary {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #e8f5e8;
  border-radius: 8px;
  border-left: 4px solid #4CAF50;
}

.comparison-summary h3 {
  color: #2e7d32;
  margin: 0 0 0.5rem 0;
}

.comparison-summary p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Pros & Cons Grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros-section, .cons-section {
  padding: 1.5rem;
  border-radius: 8px;
}

.pros-section {
  background: #f1f8e9;
  border: 1px solid #c5e1a5;
}

.cons-section {
  background: #ffebee;
  border: 1px solid #ef9a9a;
}

.pros-section h3, .cons-section h3 {
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-section h3 {
  color: #2e7d32;
}

.cons-section h3 {
  color: #c62828;
}

.pros-list, .cons-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pro-item, .con-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pro-item i, .con-item i {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pro-item i {
  color: #4CAF50;
}

.con-item i {
  color: #f44336;
}

.pro-item h4, .con-item h4 {
  margin: 0 0 0.3rem 0;
  color: #333;
}

.pro-item p, .con-item p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.use-case-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 4px solid #1e3c72;
  transition: transform 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.case-icon {
  width: 80px;
  height: 80px;
  background: #1e3c72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.use-case-card h3 {
  color: #1e3c72;
  margin: 0 0 1rem 0;
}

.use-case-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-benefits {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.benefit-tag {
  padding: 0.3rem 0.8rem;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.roi-examples {
  margin: 3rem 0;
}

.roi-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.roi-card {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-left: 4px solid #4CAF50;
}

.roi-card h4 {
  color: #1e3c72;
  margin: 0 0 0.5rem 0;
}

.roi-card p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Compliance Features */
.compliance-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-left: 4px solid #1e3c72;
}

.compliance-icon {
  width: 60px;
  height: 60px;
  background: #1e3c72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.compliance-content h3 {
  color: #1e3c72;
  margin: 0 0 0.5rem 0;
}

.compliance-content p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.vendor-recommendations {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #e3f2fd;
  border-radius: 8px;
}

.vendor-recommendations h3 {
  color: #1976d2;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recommendation-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.recommendation {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.recommendation i {
  color: #1976d2;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.recommendation span {
  color: #333;
  line-height: 1.5;
}

/* Migration Steps */
.migration-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.migration-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #1e3c72;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #1e3c72;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: #1e3c72;
  margin: 0 0 1rem 0;
}

.step-content p {
  color: #555;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.step-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #555;
}

.step-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Final Recommendations */
.final-recommendations {
  margin: 3rem 0;
}

.recommendation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.rec-card {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  border-top: 4px solid #1e3c72;
}

.rec-card i {
  font-size: 2.5rem;
  color: #1e3c72;
  margin-bottom: 1.5rem;
  display: block;
}

.rec-card h3 {
  color: #1e3c72;
  margin: 0 0 1rem 0;
}

.rec-card p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  margin: 3rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 12px;
  text-align: center;
}

.cta-content h2 {
  margin: 0 0 1rem 0;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-feature i {
  color: #4FC3F7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sidebar Styles */
.erp-solutions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.erp-solution {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s ease;
}

.erp-solution:hover {
  background: #e9ecef;
  color: #1e3c72;
}

.erp-solution i {
  font-size: 1.5rem;
  color: #1e3c72;
  width: 30px;
  text-align: center;
}

.erp-solution h4 {
  margin: 0 0 0.2rem 0;
  color: #1e3c72;
}

.erp-solution span {
  font-size: 0.8rem;
  color: #666;
}

.ai-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-stat {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.ai-stat .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 0.3rem;
}

.ai-stat .stat-label {
  font-size: 0.8rem;
  color: #666;
}

.market-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.fact-item i {
  color: #1e3c72;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.fact-item span {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

/* Tech Animation */
.tech-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  
  .workflow-step {
    flex-direction: column;
    text-align: center;
  }
  
  .compliance-item {
    flex-direction: column;
    text-align: center;
  }
  
  .migration-step {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem;
  }
}