/* Global Styles */
:root {
  --primary: #3a86ff;
  --primary-dark: #2563eb;
  --secondary: #6c757d;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header & Navigation */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 40px;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.cta-nav {
  background: var(--primary);
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
}

.cta-nav:hover {
  background: var(--primary-dark);
  color: white !important;
}

.lang-switch {
  font-weight: 600;
  color: var(--primary) !important;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 8px 20px;
  color: var(--dark);
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #f8f9fa;
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s;
}

/* Article Hero */
.article-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e1effe 100%);
  padding: 60px 0 40px;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--secondary);
}

.breadcrumb a {
  color: var(--secondary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--dark);
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.article-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--secondary);
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: #e9ecef;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--secondary);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Article Content */
.article-content {
  padding: 60px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.content-section {
  margin-bottom: 50px;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--secondary);
}

.table-responsive {
  overflow-x: auto;
  margin: 25px 0;
}

.erp-business-table {
  width: 100%;
  border-collapse: collapse;
}

.erp-business-table th,
.erp-business-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.erp-business-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.erp-business-table tr:hover {
  background-color: #f8f9fa;
}

.key-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.point-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.point-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 20px 0;
}

.feature-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.feature-list i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary);
}

.benefit-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin: 30px 0;
}

.benefit-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.benefit-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-right: 20px;
}

.benefit-impact {
  margin-top: 20px;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.two-column-list li {
  margin-bottom: 8px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.strategy-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.strategy-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.ai-vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.vision-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.vision-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary);
  font-size: 1.5rem;
}

.search-terms-box {
  background: #f8f9fa;
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 25px 0;
  border-radius: 4px;
}

.cta-box {
  background: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: #f8f9fa;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.references {
  font-size: 0.9rem;
}

.references ul {
  list-style: none;
}

.references li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.references li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-post {
  display: block;
  padding: 15px;
  border-radius: 6px;
  background: #f8f9fa;
  text-decoration: none;
  transition: all 0.3s;
}

.related-post:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.related-post h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.post-date {
  font-size: 0.8rem;
  color: var(--secondary);
}

.subscribe-form input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  margin-bottom: 10px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.event-date {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date .day {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

.event-date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
}

.event-details h4 {
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.event-location {
  font-size: 0.8rem;
  color: var(--secondary);
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer p {
  margin-bottom: 20px;
  color: #adb5bd;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid #343a40;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6c757d;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .key-points {
    grid-template-columns: 1fr;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .ai-vision-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    transition: all 0.3s;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .two-column-list {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .article-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
}

.research-highlights {
      background: linear-gradient(135deg, #f0f7ff 0%, #e1effe 100%);
      border-radius: 8px;
      padding: 25px;
      margin: 2rem 0;
      border-left: 4px solid #3a86ff;
    }
    
    .highlight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    
    .highlight-card {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .highlight-card i {
      font-size: 2rem;
      color: #3a86ff;
      margin-bottom: 15px;
      display: block;
    }
    
    .data-point {
      font-size: 2.5rem;
      font-weight: 700;
      color: #3a86ff;
      line-height: 1;
      margin-bottom: 10px;
    }
    
    .market-timeline {
      position: relative;
      padding-left: 30px;
      margin: 40px 0;
    }
    
    .market-timeline::before {
      content: '';
      position: absolute;
      left: 5px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #3a86ff;
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 30px;
      padding-left: 30px;
    }
    
    .timeline-marker {
      position: absolute;
      left: -5px;
      top: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #3a86ff;
      border: 4px solid white;
      box-shadow: 0 0 0 2px #3a86ff;
    }
    
    .timeline-content {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .timeline-year {
      position: absolute;
      left: -80px;
      top: 0;
      font-weight: bold;
      color: #3a86ff;
    }
    
    .vendor-comparison {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }
    
    .vendor-card {
      background: white;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      position: relative;
    }
    
    .vendor-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .vendor-logo {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #3a86ff;
    }
    
    .vendor-strengths {
      margin-top: 15px;
    }
    
    .vendor-strengths li {
      margin-bottom: 8px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    
    .vendor-strengths i {
      color: #28a745;
      margin-top: 4px;
    }
    
    .market-share-chart {
      background: white;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      margin: 30px 0;
      text-align: center;
    }
    
    .chart-container {
      height: 300px;
      margin: 20px auto;
      max-width: 600px;
    }
    
    .roadmap-visual {
      margin: 40px 0;
    }
    
    .roadmap-phase {
      background: white;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      margin-bottom: 20px;
      position: relative;
      border-left: 4px solid #3a86ff;
    }
    
    .phase-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .phase-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #3a86ff;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-right: 15px;
    }
    
    .phase-timeline {
      font-size: 0.9rem;
      color: #6c757d;
      margin-left: auto;
    }
    
    .phase-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .phase-activities ul {
      margin: 0;
      padding-left: 20px;
    }
    
    .phase-outcomes {
      background: #f8f9fa;
      padding: 15px;
      border-radius: 6px;
    }
    
    .phase-outcomes h4 {
      margin-top: 0;
      color: #3a86ff;
    }
    
    .conclusion-section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 8px;
      padding: 30px;
      margin: 40px 0;
      border-left: 5px solid #3a86ff;
    }
    
    .key-takeaways {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 25px 0;
    }
    
    .takeaway-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .takeaway-card i {
      font-size: 1.5rem;
      color: #3a86ff;
      margin-bottom: 15px;
      display: block;
    }
    
    @media (max-width: 992px) {
      .phase-content {
        grid-template-columns: 1fr;
      }
      
      .timeline-year {
        position: static;
        display: block;
        margin-bottom: 10px;
        font-weight: bold;
        color: #3a86ff;
      }
    }
    
    @media (max-width: 768px) {
      .highlight-grid {
        grid-template-columns: 1fr;
      }
      
      .vendor-comparison {
        grid-template-columns: 1fr;
      }
      
      .key-takeaways {
        grid-template-columns: 1fr;
      }
    }