/* Solo Business AI Tools Specific Styles */
.solo-business-hero {
  background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  color: white;
  padding: 5rem 0 3rem;
}

.solo-business-hero .hero-text h1 {
  color: white;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff 0%, #a8edea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solo-business-hero .article-meta {
  color: rgba(255, 255, 255, 0.8);
}

.solo-business-hero .tag {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Criteria Grid */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.criterion-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-top: 4px solid #3498db;
}

.criterion-icon {
  width: 50px;
  height: 50px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #3498db;
  font-size: 1.2rem;
}

.criterion-card h3 {
  margin: 0 0 0.5rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.criterion-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #7f8c8d;
}

/* Tools Table */
.table-responsive {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.tools-overview-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tools-overview-table thead {
  background: #2c3e50;
  color: white;
}

.tools-overview-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.tools-overview-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.tools-overview-table tbody tr:hover {
  background: #f8f9fa;
}

.tools-overview-table td {
  padding: 1rem;
  font-size: 0.9rem;
}

.tools-overview-table td:first-child {
  font-weight: 600;
  color: #2c3e50;
}

.tools-overview-table td:nth-child(4) {
  color: #27ae60;
  font-weight: 600;
}

/* Tool Sections */
.tool-section {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  background: white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease;
}

.tool-section:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tool-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.tool-rank {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tool-title h2 {
  margin: 0 0 0.3rem;
  color: #2c3e50;
  font-size: 1.5rem;
}

.tool-category {
  display: inline-block;
  background: #e8f4fc;
  color: #3498db;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tool-content {
  margin-top: 1rem;
}

.tool-overview {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.tool-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tool-image img {
  width: 100%;
  height: auto;
  display: block;
}

.tool-description h3 {
  color: #2c3e50;
  margin-top: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tool-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.tool-benefits li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.tool-benefits i.fa-check {
  color: #27ae60;
  margin-top: 0.2rem;
}

.tool-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.detail-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.2rem;
  border-left: 4px solid #ddd;
}

.detail-card.pros-card {
  border-left-color: #27ae60;
}

.detail-card.cons-card {
  border-left-color: #e74c3c;
}

.detail-card.pricing-card {
  border-left-color: #f39c12;
}

.detail-card.link-card {
  border-left-color: #3498db;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.detail-header h4 {
  margin: 0;
  font-size: 1rem;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.tool-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #3498db;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tool-link-btn:hover {
  background: #2980b9;
}

.tool-tip {
  font-size: 0.8rem;
  color: #7f8c8d;
  margin-top: 0.8rem;
  font-style: italic;
}

.tool-use-case {
  background: #e8f4fc;
  border-radius: 8px;
  padding: 1.2rem;
  margin-top: 1.5rem;
  border-left: 4px solid #3498db;
}

.tool-use-case h4 {
  color: #2c3e50;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tool-use-case p {
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

/* Implementation Timeline */
.implementation-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.timeline-phase {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.phase-header {
  background: #3498db;
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phase-number {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.phase-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.phase-content {
  padding: 1.5rem;
}

.phase-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.phase-content li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

/* Cost Comparison */
.cost-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cost-option {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.cost-header {
  padding: 1rem;
  color: white;
  font-size: 1.1rem;
}

.traditional-header {
  background: #e74c3c;
}

.ai-header {
  background: #27ae60;
}

.premium-header {
  background: #3498db;
}

.highlighted-cost {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.cost-content {
  padding: 1.5rem;
}

.cost-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cost-content li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.cost-content li:last-child {
  border-bottom: none;
  font-weight: 700;
  color: #2c3e50;
}

.roi-calculation {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #f39c12;
}

.roi-calculation h4 {
  color: #2c3e50;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.roi-calculation p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* UAE Considerations */
.uae-considerations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.uae-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.uae-icon {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3498db;
  flex-shrink: 0;
}

.uae-content h3 {
  margin: 0 0 0.5rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.uae-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #7f8c8d;
}

/* Key Takeaways */
.key-takeaways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.takeaway-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border-top: 4px solid #3498db;
}

.takeaway-card i {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 1rem;
  display: block;
}

.takeaway-card h3 {
  margin: 0 0 0.8rem;
  color: #2c3e50;
  font-size: 1.2rem;
}

.takeaway-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
}

.final-cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border-radius: 12px;
  padding: 2rem;
  color: white;
  text-align: center;
  margin-top: 2rem;
}

.final-cta h3 {
  margin-top: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.final-cta p {
  margin: 1rem 0 1.5rem;
  font-size: 1rem;
  opacity: 0.9;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Sidebar Styles */
.quick-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-item {
  padding: 0.8rem 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  border-left: 3px solid #3498db;
}

.nav-item:hover {
  background: #e9ecef;
}

.checklist-download {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.checklist-download p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #2c3e50;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #27ae60;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.comparison-mini {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.comparison-item:last-child {
  border-bottom: none;
}

.comp-label {
  color: #7f8c8d;
  font-size: 0.85rem;
}

.comp-value {
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tool-overview {
    grid-template-columns: 250px 1fr;
  }
}

@media (max-width: 992px) {
  .tool-overview {
    grid-template-columns: 1fr;
  }
  
  .tool-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cost-comparison {
    grid-template-columns: 1fr;
  }
  
  .highlighted-cost {
    transform: none;
    order: -1;
  }
}

@media (max-width: 768px) {
  .solo-business-hero .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .tool-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tool-rank {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .tool-details-grid {
    grid-template-columns: 1fr;
  }
  
  .implementation-timeline {
    gap: 1rem;
  }
  
  .key-takeaways {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .solo-business-hero .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .tools-overview-table {
    font-size: 0.8rem;
  }
  
  .tools-overview-table th,
  .tools-overview-table td {
    padding: 0.8rem 0.5rem;
  }
  
  .criteria-grid,
  .uae-considerations {
    grid-template-columns: 1fr;
  }
  
  .final-cta {
    padding: 1.5rem 1rem;
  }
}

/* Print Styles */
@media print {
  .tool-section {
    break-inside: avoid;
    border: 1px solid #ddd;
    box-shadow: none;
  }
  
  .tool-link-btn,
  .social-links,
  .mobile-menu-btn,
  .print-article-btn {
    display: none !important;
  }
  
  .final-cta {
    background: white !important;
    color: black !important;
    border: 2px solid #3498db;
  }
}