/* ==========================================================================
   ZAHIQ AI - Section Background Fixes
   Remove dark backgrounds between sections for seamless flow
   ========================================================================== */

/* Make all sections use the same background */
.problem-section,
.features-section,
.how-it-works,
.roi-section,
.demo-section,
.insights-section,
.pricing-section,
.cta-section {
  background: var(--background) !important;
  border-top: none;
  border-bottom: none;
}

/* Remove any gradient overlays */
.problem-section::before,
.features-section::before,
.how-it-works::before,
.roi-section::before,
.demo-section::before,
.insights-section::before,
.pricing-section::before,
.cta-section::before {
  display: none !important;
}

/* Ensure proper spacing without dark dividers */
section {
  padding: 80px 20px;
  background: var(--background) !important;
}

/* Fix specific sections that might have different backgrounds */
.hero {
  background: var(--background) !important;
}

.hero-bg {
  background: var(--gradient-surface);
  opacity: 0.3;
}

/* Subtle section separators using only spacing */
.problem-section,
.features-section,
.roi-section,
.insights-section,
.pricing-section {
  position: relative;
  margin-top: 40px;
}

/* Add subtle divider lines if needed */
.problem-section::after,
.features-section::after,
.roi-section::after,
.insights-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(94, 114, 228, 0.2) 20%,
    rgba(94, 114, 228, 0.2) 80%,
    transparent
  );
}

/* Ensure cards and content areas stand out */
.bento-card,
.pricing-card,
.insight-card,
.demo-form,
.video-placeholder,
.calculator-interactive,
.timeline-step {
  background: var(--surface) !important;
  border: 1px solid rgba(94, 114, 228, 0.1);
}

/* Fix the CTA section to be more integrated */
.cta-section {
  background: var(--background) !important;
  padding: 100px 20px;
}

.cta-container {
  background: var(--surface);
  padding: 60px 40px;
  border-radius: 20px;
  border: 1px solid rgba(94, 114, 228, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

/* Ensure smooth transitions */
* {
  transition: background-color 0.3s ease;
}