/* Features Page Styles */

/* Page Hero Section */
.page-hero-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  font-family: "Aileron Regular", sans-serif;
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  font-family: "Aileron Bold", sans-serif;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  font-weight: 400;
}

/* Features Detail Section */
.features-detail-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.feature-detail-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

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

.feature-detail-icon {
  color: #482BE7;
  margin-bottom: 1.5rem;
}

.feature-detail-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  font-family: "Aileron Bold", sans-serif;
}

.feature-detail-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: "Aileron Regular", sans-serif;
}

.feature-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-detail-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #2d3748;
  font-size: 0.95rem;
  font-family: "Aileron Regular", sans-serif;
}

.feature-detail-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #20B2AA;
  font-size: 0.875rem;
}

/* Use Cases Section */
.use-cases-section {
  padding: 5rem 0;
  background-color: #f7fafc;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 3rem;
  font-family: "Aileron Bold", sans-serif;
}

.use-case-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  font-size: 3rem;
  color: #482BE7;
  margin-bottom: 1.5rem;
}

.use-case-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  font-family: "Aileron Bold", sans-serif;
}

.use-case-description {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  font-family: "Aileron Regular", sans-serif;
}

/* Features CTA Section */
.features-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #482BE7 0%, #20B2AA 100%);
}

.features-cta-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.features-cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  font-family: "Aileron Bold", sans-serif;
}

.features-cta-subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
  font-family: "Aileron Regular", sans-serif;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-hero-title {
    font-size: 2.5rem;
  }

  .page-hero-subtitle {
    font-size: 1.125rem;
  }

  .feature-detail-card {
    padding: 2rem;
  }

  .feature-detail-title {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .features-cta-title {
    font-size: 1.75rem;
  }

  .features-cta-card {
    padding: 2rem;
  }
}

