/* LOBO AI Engine Specific Styles */

/* Hero Section with AI Theme */
.ai-engine-hero {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  position: relative;
  overflow: hidden;
}

.ai-engine-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(95, 255, 220, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123, 212, 254, 0.1) 0%, transparent 50%);
}

.ai-engine-hero .hero-text h1 {
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ai-engine-hero .article-category {
  background: rgba(95, 255, 220, 0.2);
  backdrop-filter: blur(10px);
  color: #5fffdc;
  font-weight: 600;
}

.ai-engine-hero .article-meta {
  color: rgba(255,255,255,0.8);
}

.ai-engine-hero .tag {
  background: rgba(95, 255, 220, 0.2);
  color: #5fffdc;
  border: 1px solid rgba(95, 255, 220, 0.3);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #5fffdc;
  color: #0f2027;
}

.btn-primary:hover {
  background: #7bd4fe;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(95, 255, 220, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #5fffdc;
}

.btn-secondary:hover {
  background: rgba(95, 255, 220, 0.1);
  transform: translateY(-2px);
}

/* AI Engine Visual */
.ai-engine-visual {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.engine-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #5fffdc, #7bd4fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #0f2027;
  box-shadow: 
    0 0 30px rgba(95, 255, 220, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

.data-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flow-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #5fffdc, transparent);
  height: 2px;
  width: 100%;
  opacity: 0.5;
}

.flow-line:nth-child(1) {
  top: 25%;
  animation: flow 3s linear infinite;
}

.flow-line:nth-child(2) {
  top: 50%;
  animation: flow 4s linear infinite 1s;
}

.flow-line:nth-child(3) {
  top: 75%;
  animation: flow 5s linear infinite 2s;
}

@keyframes flow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.engine-components {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.component {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #5fffdc;
  border: 2px solid rgba(95, 255, 220, 0.3);
  transition: all 0.3s ease;
  cursor: help;
}

.component:hover {
  background: rgba(95, 255, 220, 0.2);
  transform: scale(1.1);
}

.component::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 32, 39, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.component:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: 120%;
}

.component:nth-child(1) {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.component:nth-child(2) {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.component:nth-child(3) {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.component:nth-child(4) {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

/* Hero Particles */
.hero-particles .particle {
  background: rgba(95, 255, 220, 0.5);
}

/* Executive Summary */
.executive-summary {
  margin: 3rem 0;
}

.summary-card {
  background: linear-gradient(135deg, #0f2027, #203a43);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.summary-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5fffdc, #7bd4fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #0f2027;
}

.summary-content h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #5fffdc;
}

.summary-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #5fffdc;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Content Sections */
.content-section {
  margin-bottom: 4rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

/* Definition Card */
.definition-card {
  background: #f8f9fa;
  border-left: 4px solid #5fffdc;
  padding: 2rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.definition-content h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #0f2027;
}

.definition-highlight {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  border: 1px solid #e9ecef;
}

.definition-highlight p {
  font-size: 1.1rem;
  font-style: italic;
  color: #495057;
  margin: 0;
  text-align: center;
}

.definition-highlight i {
  color: #5fffdc;
  margin: 0 0.5rem;
}

/* Comparison Section */
.comparison-section {
  margin: 3rem 0;
}

.comparison-grid {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.comparison-card {
  flex: 1;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-card.traditional {
  border-top: 4px solid #e74c3c;
}

.comparison-card.enhanced {
  border-top: 4px solid #5fffdc;
}

.comparison-header {
  padding: 1.5rem;
  background: #f8f9fa;
}

.comparison-header h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: #2c3e50;
}

.comparison-card ul {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
}

.comparison-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f1f1;
}

.comparison-card li:last-child {
  border-bottom: none;
}

.comparison-card.traditional li i {
  color: #e74c3c;
}

.comparison-card.enhanced li i {
  color: #27ae60;
}

.comparison-arrow {
  font-size: 2rem;
  color: #5fffdc;
}

/* Problem Solution */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.problem-card, .solution-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.problem-card {
  border-top: 4px solid #e74c3c;
}

.solution-card {
  border-top: 4px solid #5fffdc;
}

.problem-icon, .solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.problem-icon {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.solution-icon {
  background: rgba(95, 255, 220, 0.1);
  color: #5fffdc;
}

.problem-list, .solution-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.problem-item h4, .solution-item h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.problem-item p, .solution-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Philosophy Statement */
.philosophy-statement {
  background: linear-gradient(135deg, #0f2027, #203a43);
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 2rem 0;
  color: white;
}

.philosophy-content h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #5fffdc;
}

.philosophy-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Engine Architecture */
.engine-architecture {
  margin: 3rem 0;
}

.architecture-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.layer {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 80%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-top: 4px solid #5fffdc;
  position: relative;
}

.layer-icon {
  width: 60px;
  height: 60px;
  background: rgba(95, 255, 220, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #5fffdc;
}

.layer h4 {
  margin-bottom: 0.5rem;
  color: #0f2027;
}

.layer p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.layer-connector {
  font-size: 1.5rem;
  color: #5fffdc;
}

/* Workflow Steps */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.workflow-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #5fffdc, #7bd4fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f2027;
}

.step-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-left: 4px solid #5fffdc;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  color: #0f2027;
}

.step-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.capability-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
}

.capability-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #0f2027, #203a43);
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.capability-icon {
  width: 50px;
  height: 50px;
  background: rgba(95, 255, 220, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #5fffdc;
}

.capability-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.capability-content {
  padding: 1.5rem;
}

.capability-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.capability-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.capability-content li i {
  color: #27ae60;
  margin-top: 0.25rem;
}

.capability-stats {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.stat-badge {
  background: rgba(95, 255, 220, 0.1);
  color: #0f2027;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Differentiator Grid */
.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.differentiator-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-top: 4px solid #5fffdc;
  transition: transform 0.3s ease;
}

.differentiator-card:hover {
  transform: translateY(-5px);
}

.diff-icon {
  width: 60px;
  height: 60px;
  background: rgba(95, 255, 220, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #5fffdc;
}

.differentiator-card h3 {
  margin-bottom: 1rem;
  color: #0f2027;
}

.differentiator-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.diff-metric {
  margin-top: 1rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #5fffdc;
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}

/* Market Position */
.market-position {
  margin: 3rem 0;
}

.position-comparison {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.position-card {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.position-card.lobo-position {
  border-top: 4px solid #5fffdc;
}

.position-card h4 {
  margin-bottom: 1rem;
  color: #0f2027;
  text-align: center;
}

.position-process {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.process-step {
  font-size: 0.95rem;
  color: #495057;
  text-align: center;
}

.position-weakness, .position-strength {
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.95rem;
}

.position-weakness {
  background: rgba(231, 76, 60, 0.1);
  color: #c0392b;
}

.position-strength {
  background: rgba(95, 255, 220, 0.1);
  color: #27ae60;
}

.position-arrow {
  font-size: 1.5rem;
  color: #5fffdc;
}

/* Client Value Section */
.value-propositions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-prop {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-prop h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #0f2027;
}

.value-prop p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Evolution Timeline */
.evolution-timeline {
  margin: 3rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #5fffdc;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.timeline-date {
  background: #5fffdc;
  color: #0f2027;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: #0f2027;
}

.timeline-content p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Future Capabilities */
.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.future-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.future-card:hover {
  transform: translateY(-5px);
}

.future-icon {
  width: 50px;
  height: 50px;
  background: rgba(95, 255, 220, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: #5fffdc;
}

.future-card h4 {
  margin-bottom: 0.75rem;
  color: #0f2027;
}

.future-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Vision Statement */
.vision-statement {
  background: linear-gradient(135deg, #0f2027, #203a43);
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 2rem 0;
  color: white;
}

.vision-content h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #5fffdc;
}

.vision-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.vision-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vision-value {
  background: rgba(95, 255, 220, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  margin: 4rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #0f2027, #203a43);
  border-radius: 1rem;
  padding: 3rem;
  color: white;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #5fffdc;
}

.cta-card p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

.benefit i {
  color: #5fffdc;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-note {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 1.5rem;
}

/* Article Footer */
.article-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tags-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tags-label {
  font-weight: 600;
  color: #495057;
}

.share-widget {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.share-label {
  font-weight: 600;
  color: #495057;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.linkedin { background: #0077b5; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #4267b2; }
.share-btn.email { background: #ea4335; }

/* Sidebar Styles */
.engine-sidebar {
  text-align: center;
}

.engine-visual {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
}

.core-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5fffdc, #7bd4fe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0f2027;
  z-index: 2;
}

.rotating-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(95, 255, 220, 0.3);
  border-radius: 50%;
}

.ring-1 {
  width: 120px;
  height: 120px;
  animation: rotate-ring 10s linear infinite;
}

.ring-2 {
  width: 160px;
  height: 160px;
  animation: rotate-ring 15s linear infinite reverse;
}

.ring-3 {
  width: 200px;
  height: 200px;
  animation: rotate-ring 20s linear infinite;
}

@keyframes rotate-ring {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.engine-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.engine-stat {
  text-align: center;
}

.engine-stat .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5fffdc;
  line-height: 1;
}

.engine-stat .stat-label {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}

/* Services List */
.services-list {
  display: grid;
  gap: 0.75rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.service-item i {
  color: #5fffdc;
  width: 20px;
}

/* Resources List */
.resources-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.resource-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.resource-item i {
  font-size: 1.25rem;
  color: #5fffdc;
  width: 24px;
}

.resource-item div {
  flex: 1;
}

.resource-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #0f2027;
}

.resource-item span {
  font-size: 0.875rem;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .ai-engine-visual {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 992px) {
  .comparison-grid,
  .problem-solution,
  .position-comparison {
    flex-direction: column;
  }
  
  .comparison-arrow,
  .position-arrow {
    transform: rotate(90deg);
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
}

@media (max-width: 768px) {
  .ai-engine-visual {
    width: 300px;
    height: 300px;
  }
  
  .engine-core {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .component {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .summary-card {
    flex-direction: column;
    text-align: center;
  }
  
  .summary-stats {
    justify-content: center;
  }
  
  .cta-card {
    padding: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .article-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .ai-engine-visual {
    width: 250px;
    height: 250px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .capabilities-grid,
  .differentiator-grid,
  .value-propositions,
  .future-grid {
    grid-template-columns: 1fr;
  }
  
  .architecture-diagram .layer {
    width: 100%;
  }
}