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

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

.page-app-download-features__section {
  padding: 80px 0;
  text-align: center;
}

.page-app-download-features__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-features__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #B0B0B0; /* Slightly darker light gray for descriptions */
}

/* Hero Section */
.page-app-download-features__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3a5a 100%);
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-app-download-features__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-app-download-features__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-app-download-features__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.page-app-download-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-app-download-features__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-app-download-features__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-features__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-app-download-features__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-features__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-app-download-features__hero-image-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-app-download-features__hero-image {
  max-width: 70%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Features Overview */
.page-app-download-features__features-overview {
  background-color: #1a2a47;
  padding: 60px 0;
}

.page-app-download-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-features__grid-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-features__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-app-download-features__grid-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-features__grid-text {
  font-size: 1em;
  color: #C0C0C0;
}

/* Detailed Features */
.page-app-download-features__detailed-features {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-app-download-features__feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  text-align: left;
}

.page-app-download-features__feature-item:last-child {
  margin-bottom: 0;
}

.page-app-download-features__feature-item--reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.page-app-download-features__feature-content {
  flex: 1;
}

.page-app-download-features__feature-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-app-download-features__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-app-download-features__feature-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-features__feature-text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-app-download-features__feature-item--reverse .page-app-download-features__btn {
  margin-left: auto;
}

/* Download Guide */
.page-app-download-features__download-guide {
  background-color: #1a2a47;
}

.page-app-download-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-features__step-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-app-download-features__step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 2.5em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.2);
  line-height: 1;
}

.page-app-download-features__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-app-download-features__step-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-app-download-features__download-cta {
  margin-top: 60px;
}

/* Security Info */
.page-app-download-features__security-info {
  background-color: #0A192F;
}

.page-app-download-features__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-features__security-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-app-download-features__security-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-app-download-features__security-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-app-download-features__security-text {
  font-size: 1em;
  color: #C0C0C0;
}

/* Final CTA */
.page-app-download-features__cta-final {
  background: linear-gradient(45deg, #0A192F, #FFD700);
  padding: 100px 0;
}

.page-app-download-features__cta-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.page-app-download-features__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
}

.page-app-download-features__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-app-download-features__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-app-download-features__hero-title {
    font-size: 2.8em;
  }
  .page-app-download-features__section-title {
    font-size: 2.2em;
  }
  .page-app-download-features__feature-item {
    flex-direction: column;
    text-align: center;
  }
  .page-app-download-features__feature-item--reverse {
    flex-direction: column;
    text-align: center;
  }
  .page-app-download-features__feature-item--reverse .page-app-download-features__btn {
    margin-left: unset;
  }
  .page-app-download-features__feature-content {
    order: 2;
  }
  .page-app-download-features__feature-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-app-download-features__section {
    padding: 60px 0;
  }
  .page-app-download-features__hero-title {
    font-size: 2.2em;
  }
  .page-app-download-features__hero-subtitle {
    font-size: 1em;
  }
  .page-app-download-features__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-features__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-app-download-features__hero-image {
    max-width: 90%;
  }
  .page-app-download-features__section-title {
    font-size: 1.8em;
  }
  .page-app-download-features__grid-title {
    font-size: 1.5em;
  }
  .page-app-download-features__feature-title {
    font-size: 1.8em;
  }
  .page-app-download-features__cta-title {
    font-size: 2.2em;
  }
  .page-app-download-features__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-app-download-features__container {
    padding: 0 15px;
  }
  .page-app-download-features__hero-title {
    font-size: 1.8em;
  }
  .page-app-download-features__section-title {
    font-size: 1.5em;
  }
  .page-app-download-features__btn {
    width: 100%;
  }
  .page-app-download-features__cta-title {
    font-size: 1.8em;
  }
  .page-app-download-features__cta-content {
    padding: 30px;
  }
}