/* ==========================================================================
   ZAHIQ AI - Data Analytics Insights Section
   ========================================================================== */

.insights-section {
  padding: 80px 20px;
  background: var(--background);
}

.insights-container {
  max-width: 1200px;
  margin: 0 auto;
}

.insights-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insights-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.insight-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.insight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.insight-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.insight-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.insights-cta {
  text-align: center;
  padding: 2rem;
  background: var(--surface-elevated);
  border-radius: 12px;
}

.insights-cta-text {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.btn-insights-cta {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-insights-cta:hover {
  transform: scale(1.05);
}

/* Demo Form Styles */
.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.demo-video {
  width: 100%;
}

.video-placeholder {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-placeholder iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.demo-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.demo-form h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--background);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-demo-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-top: 1rem;
}

.btn-demo-submit:hover {
  transform: scale(1.02);
}

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* AI Benefits in Pricing */
.ai-benefits {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.benefit-item:hover {
  background: var(--surface-elevated);
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit-text {
  color: var(--text-primary);
  font-size: 1rem;
}

.pricing-comparison h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.comparison-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .demo-content {
    grid-template-columns: 1fr;
  }

  .insights-title {
    font-size: 2rem;
  }
}