/* style/index-platform-features.css */
.page-index-platform-features {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

.page-index-platform-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-platform-features__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3459 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-platform-features__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-platform-features__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #B0B0B0;
}

.page-index-platform-features__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-index-platform-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-index-platform-features__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-index-platform-features__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-platform-features__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-index-platform-features__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-index-platform-features__btn--download {
  background-color: #00A86B; /* Green for download */
  color: #FFFFFF;
  border: 2px solid #00A86B;
  margin-top: 20px;
}

.page-index-platform-features__btn--download:hover {
  background-color: #008f5a;
  border-color: #008f5a;
  transform: translateY(-2px);
}

.page-index-platform-features__hero-image-wrapper {
  margin-top: 50px;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-platform-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-platform-features__section {
  padding: 80px 0;
  background-color: #122847; /* Slightly lighter dark blue for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-platform-features__section:nth-child(even) {
  background-color: #0A192F;
}

.page-index-platform-features__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-platform-features__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #B0B0B0;
}

.page-index-platform-features__features-grid,
.page-index-platform-features__tech-grid,
.page-index-platform-features__experience-grid,
.page-index-platform-features__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-platform-features__feature-item,
.page-index-platform-features__tech-item,
.page-index-platform-features__experience-item,
.page-index-platform-features__promo-item {
  background-color: #1a3459; /* Medium dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-platform-features__feature-item:hover,
.page-index-platform-features__tech-item:hover,
.page-index-platform-features__experience-item:hover,
.page-index-platform-features__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index-platform-features__feature-icon,
.page-index-platform-features__tech-icon,
.page-index-platform-features__experience-icon,
.page-index-platform-features__promo-image {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
}

.page-index-platform-features__promo-image {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: none;
}

.page-index-platform-features__feature-title,
.page-index-platform-features__tech-title,
.page-index-platform-features__experience-title,
.page-index-platform-features__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-platform-features__feature-description,
.page-index-platform-features__tech-description,
.page-index-platform-features__experience-description,
.page-index-platform-features__promo-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-index-platform-features__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-index-platform-features__why-choose .page-index-platform-features__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.page-index-platform-features__why-choose .page-index-platform-features__list li {
  background-color: #1a3459;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-platform-features__why-choose .page-index-platform-features__list li strong {
  color: #FFD700;
}

.page-index-platform-features__section-outro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 50px auto 0 auto;
  color: #B0B0B0;
}

.page-index-platform-features__faq-item {
  background-color: #1a3459;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-platform-features__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-platform-features__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-platform-features__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-platform-features__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-platform-features__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-platform-features__hero-title {
    font-size: 2.8em;
  }
  .page-index-platform-features__section-title {
    font-size: 2em;
  }
  .page-index-platform-features__features-grid,
  .page-index-platform-features__tech-grid,
  .page-index-platform-features__experience-grid,
  .page-index-platform-features__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-platform-features__why-choose .page-index-platform-features__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-platform-features__hero {
    padding: 60px 0;
  }
  .page-index-platform-features__hero-title {
    font-size: 2.2em;
  }
  .page-index-platform-features__hero-description {
    font-size: 1em;
  }
  .page-index-platform-features__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-platform-features__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-platform-features__section {
    padding: 60px 0;
  }
  .page-index-platform-features__section-title {
    font-size: 1.8em;
  }
  .page-index-platform-features__section-intro {
    font-size: 0.95em;
  }
  .page-index-platform-features__features-grid,
  .page-index-platform-features__tech-grid,
  .page-index-platform-features__experience-grid,
  .page-index-platform-features__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-platform-features__why-choose .page-index-platform-features__list {
    grid-template-columns: 1fr;
  }
  .page-index-platform-features__feature-icon,
  .page-index-platform-features__tech-icon,
  .page-index-platform-features__experience-icon {
    width: 60px;
    height: 60px;
  }
  .page-index-platform-features__feature-title,
  .page-index-platform-features__tech-title,
  .page-index-platform-features__experience-title,
  .page-index-platform-features__promo-title {
    font-size: 1.4em;
  }
  .page-index-platform-features__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-platform-features__hero-title {
    font-size: 1.8em;
  }
  .page-index-platform-features__section-title {
    font-size: 1.6em;
  }
  .page-index-platform-features__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-platform-features__feature-title,
  .page-index-platform-features__tech-title,
  .page-index-platform-features__experience-title,
  .page-index-platform-features__promo-title {
    font-size: 1.2em;
  }
  .page-index-platform-features__faq-question {
    font-size: 1.1em;
  }
}