/* Product Hero Section */
.product-hero {
  padding: 8rem 0 4rem;
  background-color: var(--background);
}

.product-hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.product-hero-content {
  flex: 1;
  max-width: 600px;
}

.product-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.product-hero p {
  font-size: 1.25rem;
  color: var(--dark-light);
  margin-bottom: 2rem;
}

.product-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.product-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Make it responsive */
@media (max-width: 992px) {
  .product-hero .container {
    flex-direction: column;
    text-align: center;
  }

  .product-hero-content {
    max-width: 100%;
  }

  .product-hero-image {
    margin-top: 3rem;
  }
}

/* Product Features Section */
.product-features {
  padding: 5rem 0;
  background-color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

/* Product How It Works Section */
.product-how {
  background-color: var(--background);
}

.workflow-steps-horizontal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.workflow-step {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-icon {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.workflow-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.workflow-step p {
  color: var(--dark-light);
}

.workflow-demo {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.workflow-demo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Compatibility Section */
.compatibility {
  padding: 5rem 0;
  background-color: var(--light);
}

.compatibility-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.compatibility-banks h3,
.compatibility-software h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.banks-grid,
.software-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bank-logo,
.software-logo {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
}

.bank-logo img,
.software-logo img {
  max-width: 100%;
  max-height: 3rem;
  object-fit: contain;
}

.compatibility-banks p,
.compatibility-software p {
  text-align: center;
  color: var(--dark-light);
}

/* Product Testimonials Section */
.product-testimonials {
  padding: 5rem 0;
  background-color: var(--background);
}

.testimonials-slider {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide:first-child {
  display: block;
}

.testimonial-content {
  background-color: var(--light);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--dark-light);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.prev-btn,
.next-btn {
  background-color: var(--light);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary);
  color: white;
}

/* Pricing CTA Section */
.pricing-cta {
  padding: 5rem 0;
  background-color: var(--primary-light);
}

.pricing-cta-content {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.pricing-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-cta-content p {
  color: var(--dark-light);
  margin-bottom: 2rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--light);
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 3, 38, 0.1);
  margin-bottom: 1.5rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.125rem;
}

.faq-icon {
  color: var(--primary);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 20rem;
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Media Queries */
@media (min-width: 768px) {
  .product-hero {
    display: flex;
    align-items: center;
  }

  .product-hero-content {
    width: 50%;
  }

  .product-hero-image {
    width: 50%;
    margin-top: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps-horizontal {
    flex-direction: row;
  }

  .workflow-step {
    flex: 1;
  }

  .compatibility-content {
    flex-direction: row;
  }

  .compatibility-banks,
  .compatibility-software {
    width: 50%;
  }

  .banks-grid,
  .software-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .banks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

