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

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

.page-index-platform-features__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-platform-features__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-platform-features__hero-title {
  font-size: 3.5em;
  color: #E0B300; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-index-platform-features__hero-description {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-index-platform-features__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.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;
  cursor: pointer;
  border: none;
}

.page-index-platform-features__btn--primary {
  background-color: #E0B300; /* Auxiliary color */
  color: #0A2239; /* Main color for text */
}

.page-index-platform-features__btn--primary:hover {
  background-color: #f5ddc6; /* Lighter shade for hover */
  transform: translateY(-3px);
}

.page-index-platform-features__btn--secondary {
  background-color: transparent;
  color: #E0B300;
  border: 2px solid #E0B300;
}

.page-index-platform-features__btn--secondary:hover {
  background-color: #E0B300;
  color: #0A2239;
  transform: translateY(-3px);
}

.page-index-platform-features__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  height: auto;
}

.page-index-platform-features__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-platform-features__section {
  padding: 60px 0;
  background-color: #1a3a5a; /* Slightly lighter dark background */
  color: #F0F0F0;
}

.page-index-platform-features__section--dark {
  background-color: #0A2239;
}

.page-index-platform-features__section-title {
  font-size: 2.8em;
  color: #E0B300;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-index-platform-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-platform-features__feature-card {
  background-color: #1a3a5a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-platform-features__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-index-platform-features__card-title {
  font-size: 1.8em;
  color: #E0B300;
  margin-bottom: 15px;
}

.page-index-platform-features__card-text {
  font-size: 1em;
  color: #CCCCCC;
}

.page-index-platform-features__content-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-index-platform-features__content-row--reverse {
  flex-direction: row-reverse;
}

.page-index-platform-features__content-text {
  flex: 1;
  min-width: 300px;
}

.page-index-platform-features__sub-title {
  font-size: 2em;
  color: #E0B300;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-platform-features__content-text p {
  margin-bottom: 15px;
  color: #CCCCCC;
}

.page-index-platform-features__content-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-platform-features__content-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-platform-features__support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-platform-features__support-item {
  background-color: #1a3a5a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-platform-features__support-item .page-index-platform-features__sub-title {
  margin-top: 0;
}

.page-index-platform-features__promo-list,
.page-index-platform-features__responsibility-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-platform-features__promo-list li,
.page-index-platform-features__responsibility-list li {
  background-color: #1a3a5a;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #F0F0F0;
  position: relative;
  padding-left: 50px;
}

.page-index-platform-features__promo-list li::before,
.page-index-platform-features__responsibility-list li::before {
  content: '✔';
  color: #E0B300;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-index-platform-features__promo-list li p,
.page-index-platform-features__responsibility-list li p {
  margin: 0;
}

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

.page-index-platform-features__final-text {
  font-size: 1.2em;
  text-align: center;
  margin-top: 60px;
  color: #F0F0F0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-platform-features__inline-link {
  color: #E0B300;
  text-decoration: none;
  font-weight: bold;
}

.page-index-platform-features__inline-link:hover {
  text-decoration: underline;
}

/* Floating Ad */
.page-index-platform-features__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #E0B300; /* Auxiliary color */
  color: #0A2239; /* Main color for text */
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: page-index-platform-features__fadeInUp 0.5s ease-out;
}

.page-index-platform-features__floating-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-index-platform-features__floating-ad p {
  margin: 0;
  font-weight: bold;
}

.page-index-platform-features__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #0A2239; /* Main color */
  color: #E0B300; /* Auxiliary color */
}

.page-index-platform-features__btn--small:hover {
  background-color: #1a3a5a; /* Slightly lighter main color */
  color: #f5ddc6;
}

.page-index-platform-features__close-ad {
  background: none;
  border: none;
  color: #0A2239;
  font-size: 1.2em;
  cursor: pointer;
  margin-left: 10px;
}

.page-index-platform-features__close-ad:hover {
  color: #1a3a5a;
}

@keyframes page-index-platform-features__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-platform-features__hero-title {
    font-size: 2.8em;
  }
  .page-index-platform-features__section-title {
    font-size: 2.2em;
  }
  .page-index-platform-features__sub-title {
    font-size: 1.7em;
  }
  .page-index-platform-features__content-row {
    flex-direction: column;
    text-align: center;
  }
  .page-index-platform-features__content-row--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-platform-features__hero-title {
    font-size: 2.2em;
  }
  .page-index-platform-features__hero-description {
    font-size: 1em;
  }
  .page-index-platform-features__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-platform-features__section-title {
    font-size: 1.8em;
  }
  .page-index-platform-features__section-description {
    font-size: 0.95em;
  }
  .page-index-platform-features__features-grid,
  .page-index-platform-features__support-grid {
    grid-template-columns: 1fr;
  }
  .page-index-platform-features__floating-ad {
    flex-direction: column;
    text-align: center;
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
  }
  .page-index-platform-features__floating-content {
    flex-direction: column;
    gap: 10px;
  }
  .page-index-platform-features__close-ad {
    position: absolute;
    top: 5px;
    right: 5px;
    margin-left: 0;
  }
  .page-index-platform-features__promo-list li,
  .page-index-platform-features__responsibility-list li {
    padding-left: 20px;
    text-align: left;
  }
  .page-index-platform-features__promo-list li::before,
  .page-index-platform-features__responsibility-list li::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-index-platform-features__hero-section {
    padding: 50px 0;
  }
  .page-index-platform-features__hero-title {
    font-size: 1.8em;
  }
  .page-index-platform-features__section {
    padding: 40px 0;
  }
  .page-index-platform-features__section-title {
    font-size: 1.5em;
  }
  .page-index-platform-features__sub-title {
    font-size: 1.5em;
  }
  .page-index-platform-features__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}