/* Homepage Enhancements */

/* Hero CTA Buttons */
.hero-cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-buttons .btn-primary,
.hero-cta-buttons .btn-secondary {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.hero-cta-buttons .btn-primary {
  background: #3b4ef8;
  color: #fff;
  border: 2px solid #3b4ef8;
}

.hero-cta-buttons .btn-primary:hover {
  background: #2a3dd9;
  border-color: #2a3dd9;
  transform: translateY(-2px);
}

.hero-cta-buttons .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Demo Video Section */
.demo-video {
  padding: 80px 0;
}

.demo-video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.demo-video h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.demo-video ul {
  list-style: none;
  padding: 0;
}

.demo-video ul li {
  padding: 12px 0;
  font-size: 16px;
  color: #555;
}

.demo-video ul li i {
  color: #3b4ef8;
  margin-right: 10px;
  font-size: 20px;
}

/* Audience Segments */
.audience {
  padding: 80px 0;
}

.audience-card {
  background: #f6f7fa;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.audience-card h4 i {
  color: #3b4ef8;
  margin-right: 10px;
  font-size: 24px;
}

.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-card ul li {
  padding: 8px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* CTA Section Updates */
.cta .cta-btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.cta .cta-btn-secondary:hover {
  background: #333;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-buttons .btn-primary,
  .hero-cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .demo-video h3 {
    margin-top: 30px;
  }
  
  .cta .cta-btn,
  .cta .cta-btn-secondary {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}
