.platform-intelligence-section {
  background: linear-gradient(135deg,
      rgba(5, 9, 20, 0.98) 0%,
      rgba(46, 43, 61, 0.95) 30%,
      rgba(5, 9, 20, 0.98) 70%,
      rgba(240, 80, 48, 0.1) 85%,
      rgba(5, 9, 20, 0.98) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-left: 6px solid var(--brand-orange);
}

/* Subtle tech background pattern */
.platform-intelligence-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(90deg, rgba(240, 80, 48, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(240, 80, 48, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

/* Neural network pattern overlay */
.platform-intelligence-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 80, 48, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.platform-intelligence-section .container {
  position: relative;
  z-index: 2;
}

.platform-intelligence-section .section-lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  font-weight: 400;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.intelligence-card {
  background: linear-gradient(135deg,
      rgba(46, 43, 61, 0.4) 0%,
      rgba(10, 15, 28, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(240, 80, 48, 0.2);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.intelligence-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--brand-orange) 50%,
      transparent 100%);
  opacity: 0.6;
}

.intelligence-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-orange);
  box-shadow:
    0 12px 40px rgba(240, 80, 48, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.intelligence-card:hover::before {
  opacity: 1;
}

.intelligence-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intelligence-icon i {
  font-size: 2.5rem;
  color: var(--brand-orange);
  position: relative;
  z-index: 2;
}

/* Pulsing ring animation */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-orange);
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.intelligence-card h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-weight: 600;
}

.intelligence-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.intelligence-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(240, 80, 48, 0.2);
}

.intelligence-metric .metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-orange);
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.intelligence-metric .metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Platform Vision Box */
.platform-vision {
  margin-top: 60px;
  background: linear-gradient(135deg,
      rgba(240, 80, 48, 0.15) 0%,
      rgba(46, 43, 61, 0.2) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px 60px;
  border: 2px solid rgba(240, 80, 48, 0.3);
  box-shadow:
    0 12px 40px rgba(240, 80, 48, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.platform-vision::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 80, 48, 0.1) 0%, transparent 60%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.vision-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.vision-content h3 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.vision-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 968px) {
  .intelligence-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .platform-vision {
    padding: 40px 30px;
  }

  .vision-content h3 {
    font-size: 1.5rem;
  }

  .vision-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .platform-intelligence-section {
    padding: 60px 0;
  }

  .platform-intelligence-section .section-lead {
    font-size: 1.1rem;
  }

  .intelligence-card {
    padding: 30px 20px;
  }

  .platform-vision {
    padding: 30px 20px;
  }
}