/* style/blog-neo79-app-features.css */

/* Global styles for this page content */
.page-blog-neo79-app-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-neo79-app-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-neo79-app-features__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-neo79-app-features__section:last-of-type {
  border-bottom: none;
}

.page-blog-neo79-app-features__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Hero Section */
.page-blog-neo79-app-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #08160F; /* Background */
}

.page-blog-neo79-app-features__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-neo79-app-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-neo79-app-features__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 60px;
  margin-top: -80px; /* Overlap slightly with image for visual appeal */
  position: relative;
  z-index: 1;
  background-color: #08160F; /* Match background for seamless transition */
  border-radius: 15px 15px 0 0; /* Rounded top corners */
  box-shadow: 0 -10px 20px rgba(0,0,0,0.5); /* Shadow for depth */
}

.page-blog-neo79-app-features__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-neo79-app-features__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-neo79-app-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-neo79-app-features__btn-primary,
.page-blog-neo79-app-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-neo79-app-features__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button custom color */
  color: #ffffff;
  border: none;
}

.page-blog-neo79-app-features__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-neo79-app-features__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-neo79-app-features__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}

/* Introduction Section */
.page-blog-neo79-app-features__introduction p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-neo79-app-features__introduction .page-blog-neo79-app-features__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px 0;
}

/* Core Features Grid */
.page-blog-neo79-app-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-neo79-app-features__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
}

.page-blog-neo79-app-features__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.page-blog-neo79-app-features__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-neo79-app-features__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-neo79-app-features__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1; /* Make paragraphs take available space */
}

/* Benefits List */
.page-blog-neo79-app-features__benefit-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-blog-neo79-app-features__benefit-list li {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-left: 5px solid #2AD16F; /* Highlight with brand color */
  border-radius: 8px;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 1.1em;
}

.page-blog-neo79-app-features__benefit-list li strong {
  color: #57E38D; /* Glow */
}

/* Get Started Steps */
.page-blog-neo79-app-features__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-blog-neo79-app-features__steps-list li {
  counter-increment: step-counter;
  background-color: #11271B; /* Card BG */
  padding: 25px 30px 25px 70px;
  border-radius: 8px;
  position: relative;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-blog-neo79-app-features__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2AD16F; /* Brand color */
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-neo79-app-features__steps-list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-neo79-app-features__steps-list li a {
  color: #57E38D; /* Glow for links */
  text-decoration: underline;
}

.page-blog-neo79-app-features__steps-list li a:hover {
  color: #2AD16F;
}

/* FAQ Section */
.page-blog-neo79-app-features__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-neo79-app-features__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.page-blog-neo79-app-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  background-color: #11271B; /* Card BG */
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-neo79-app-features__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker */
}

.page-blog-neo79-app-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 24px;
  text-align: center;
  color: #2AD16F;
}

.page-blog-neo79-app-features__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-blog-neo79-app-features__faq-answer p {
  margin: 0;
}

.page-blog-neo79-app-features__faq-answer a {
  color: #57E38D; /* Glow for links */
  text-decoration: underline;
}

.page-blog-neo79-app-features__faq-answer a:hover {
  color: #2AD16F;
}

/* Conclusion Section */
.page-blog-neo79-app-features__conclusion p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-neo79-app-features__cta-buttons--bottom {
  margin-top: 40px;
}

/* General image styling */
.page-blog-neo79-app-features img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none !important; /* Ensure no image filters are used */
}

/* Ensure minimum image size is not violated */
.page-blog-neo79-app-features img:not(.page-blog-neo79-app-features__card-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-neo79-app-features__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-neo79-app-features__section-title {
    font-size: 2em;
  }
  .page-blog-neo79-app-features__hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-blog-neo79-app-features {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important; /* body handles header offset, this is for visual top spacing */
  }

  .page-blog-neo79-app-features__container {
    padding: 0 15px;
  }

  .page-blog-neo79-app-features__section {
    padding: 40px 0;
  }

  .page-blog-neo79-app-features__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* Hero Section */
  .page-blog-neo79-app-features__hero-content {
    padding: 30px 15px 40px;
    margin-top: -40px;
  }

  .page-blog-neo79-app-features__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-neo79-app-features__description {
    font-size: 1em;
  }

  /* CTA Buttons */
  .page-blog-neo79-app-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-neo79-app-features__btn-primary,
  .page-blog-neo79-app-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Images */
  .page-blog-neo79-app-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-neo79-app-features__section,
  .page-blog-neo79-app-features__card,
  .page-blog-neo79-app-features__container,
  .page-blog-neo79-app-features__hero-section,
  .page-blog-neo79-app-features__feature-card,
  .page-blog-neo79-app-features__benefit-list li,
  .page-blog-neo79-app-features__steps-list li,
  .page-blog-neo79-app-features__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Specific card image size for mobile */
  .page-blog-neo79-app-features__card-image {
    height: 180px;
  }

  .page-blog-neo79-app-features__feature-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }

  .page-blog-neo79-app-features__benefit-list {
    grid-template-columns: 1fr;
  }

  .page-blog-neo79-app-features__steps-list li {
    padding-left: 60px;
  }
  .page-blog-neo79-app-features__steps-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
    left: 15px;
  }

  /* Video specific rules (defensive, as no video on this page) */
  .page-blog-neo79-app-features video,
  .page-blog-neo79-app-features__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-neo79-app-features__video-section,
  .page-blog-neo79-app-features__video-container,
  .page-blog-neo79-app-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-neo79-app-features__video-section {
    padding-top: 10px !important;
  }
  .page-blog-neo79-app-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Desktop video container width (defensive, as no video on this page) */
.page-blog-neo79-app-features__video-container {
  width: 100%;
  max-width: 1200px;
}