/* Internal styles extracted from HTML */

/* Industries Section Styles */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.industry-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.industry-item:nth-child(1) {
  animation-delay: 0.1s;
}
.industry-item:nth-child(2) {
  animation-delay: 0.2s;
}
.industry-item:nth-child(3) {
  animation-delay: 0.3s;
}
.industry-item:nth-child(4) {
  animation-delay: 0.4s;
}
.industry-item:nth-child(5) {
  animation-delay: 0.5s;
}
.industry-item:nth-child(6) {
  animation-delay: 0.6s;
}
.industry-item:nth-child(7) {
  animation-delay: 0.7s;
}
.industry-item:nth-child(8) {
  animation-delay: 0.8s;
}
.industry-item:nth-child(9) {
  animation-delay: 0.9s;
}
.industry-item:nth-child(10) {
  animation-delay: 1s;
}
.industry-item:nth-child(11) {
  animation-delay: 1.1s;
}
.industry-item:nth-child(12) {
  animation-delay: 1.2s;
}

.industry-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.industry-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
  color: #fff;
}

.industry-card span {
  font-weight: 500;
  font-size: 0.95rem;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dashboard Section Styles */
.dashboard-preview {
  position: relative;
  text-align: center;
}

.desktop-dashboard {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.mobile-dashboard {
  display: none;
  margin: 0 auto;
}

/* Video Section Styles */
.video-wrapper-modern {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-wrapper-modern iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.video-wrapper-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* FAQ Section Styles */
.faq-container {
  max-width: 100%;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(102, 126, 234, 0.05);
}

.faq-question h5 {
  color: #2d3748;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-question i {
  color: #667eea;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  border-top: 1px solid #e2e8f0;
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .industry-card {
    padding: 1rem;
  }

  .industry-card i {
    font-size: 1.5rem;
  }

  .desktop-dashboard {
    display: none;
  }

  .mobile-dashboard {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-answer p {
    padding: 1rem;
  }

  .faq-question h5 {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 6px;
  }
}
