body.page-feature section,
body.page-pricing section,
body.page-help section {
  position: relative;
}

body.page-feature .hero-section,
body.page-pricing .hero-section,
body.page-help .hero-section {
  min-height: 68vh;
}

body.page-feature .hero-title,
body.page-pricing .hero-title,
body.page-help .hero-title {
  max-width: 15ch;
}

/* Feature page */
body.page-feature #features {
  background: #f7fbff !important;
}

body.page-feature .feature-title {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #0f2d56;
}

body.page-feature .feature-description {
  font-size: 0.98rem;
  color: #516580;
  line-height: 1.65;
}

body.page-feature .feature-list li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #284566;
}

body.page-feature .feature-list i {
  font-size: 1rem;
  color: #0a63ff !important;
}

body.page-feature .feature-image-wrapper {
  perspective: 1000px;
}

body.page-feature .feature-image {
  border: 1px solid #d4e3f5;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(14, 40, 76, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #fff;
}

body.page-feature .feature-image:hover {
  transform: rotateY(3deg) rotateX(2deg) translateY(-2px);
  box-shadow: 0 22px 38px rgba(14, 40, 76, 0.2);
}

/* Pricing page */
body.page-pricing .bg-pink { background: #ff5a78 !important; }
body.page-pricing .bg-blue { background: #0b6dff !important; }
body.page-pricing .bg-green { background: #1ea967 !important; }
body.page-pricing .bg-orange { background: #ff9800 !important; }

body.page-pricing .pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.52rem;
  color: #2f4868;
  font-weight: 500;
}

body.page-pricing .plan-card {
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

body.page-pricing .plan-card:hover,
body.page-pricing .plan-card.active {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(11, 109, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.85);
}

body.page-pricing .plan-card h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.01em;
}

body.page-pricing .accordion {
  --bs-accordion-border-color: #d7e4f4;
  --bs-accordion-btn-color: #173963;
  --bs-accordion-btn-bg: #f8fbff;
  --bs-accordion-active-color: #0a63ff;
  --bs-accordion-active-bg: #f2f8ff;
}

body.page-pricing .accordion-item {
  border-left: 4px solid #0a63ff;
  border-radius: 0 !important;
  overflow: hidden;
}

body.page-pricing .accordion-button {
  font-size: 0.8rem;
  padding: 0.8rem 1rem;
  font-weight: 600;
}

body.page-pricing .accordion-button:focus {
  box-shadow: none;
}

body.page-pricing .text-purple {
  color: #5b3cc5;
}

/* Help page */
body.page-help .breadcrumb {
  --bs-breadcrumb-divider-color: #4f688c;
}

body.page-help .toc-item a {
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  display: block;
  color: #0d5dd6;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 8px;
  padding: 0.35rem 0.45rem;
}

body.page-help .toc-item a:hover {
  background: #e9f3ff;
  border-left-color: #0d6efd;
  transform: translateX(4px);
  text-decoration: none;
}

body.page-help .sticky-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.page-help .colorful-image {
  animation: helpFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 7px 15px rgba(13, 110, 253, 0.28));
  transition: transform 0.24s ease, filter 0.24s ease;
}

body.page-help .colorful-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 22px rgba(13, 110, 253, 0.42));
}

@keyframes helpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 991.98px) {
  body.page-feature .hero-section,
  body.page-pricing .hero-section,
  body.page-help .hero-section {
    min-height: 58vh;
  }
}

@media (max-width: 767.98px) {
  body.page-feature .feature-image:hover {
    transform: none;
  }

  body.page-pricing .pricing-features li {
    font-size: 0.9rem;
  }
}
