@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

#novelx-products-page {
  --npx-primary: #f22735;
  --npx-primary-dark: #d71c2a;
  --npx-dark: #101828;
  --npx-dark-soft: #1d2939;
  --npx-text: #475467;
  --npx-muted: #667085;
  --npx-white: #ffffff;
  --npx-soft: #fff7f7;
  --npx-soft-2: #fffafa;
  --npx-border: rgba(16, 24, 40, 0.08);
  --npx-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --npx-shadow-lg: 0 25px 80px rgba(242, 39, 53, 0.12);
  --npx-radius: 28px;
  --npx-radius-md: 20px;
  --npx-gradient: linear-gradient(135deg, #f22735 0%, #ff6a76 100%);
  font-family: "Poppins", sans-serif;
  color: var(--npx-dark);
  background: #ffffff;
  overflow: hidden;
}

#novelx-products-page,
#novelx-products-page * {
  box-sizing: border-box;
}

#novelx-products-page .container {
  position: relative;
  z-index: 2;
}

#novelx-products-page .npx-badge,
#novelx-products-page .npx-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(242, 39, 53, 0.1);
  color: var(--npx-primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#novelx-products-page .npx-mini-badge {
  margin-bottom: 16px;
}

#novelx-products-page .npx-mini-badge-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

#novelx-products-page .npx-section-head {
  max-width: 860px;
  margin: 0 auto 52px;
}

#novelx-products-page .npx-section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 14px;
  color: var(--npx-dark);
}

#novelx-products-page .npx-section-head p {
  color: var(--npx-text);
  line-height: 1.9;
  margin: 0;
}

#novelx-products-page .npx-title {
  font-size: clamp(2.35rem, 5vw, 3.25rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--npx-dark);
  margin: 18px 0;
}

#novelx-products-page .npx-lead {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--npx-text);
  max-width: 720px;
  margin-bottom: 0;
}

#novelx-products-page .npx-hero {
  position: relative;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(242, 39, 53, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(242, 39, 53, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

#novelx-products-page .npx-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(242, 39, 53, 0.08);
  filter: blur(70px);
}

#novelx-products-page .npx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

#novelx-products-page .npx-btn-primary,
#novelx-products-page .npx-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

#novelx-products-page .npx-btn-primary {
  background: var(--npx-gradient);
  color: #fff;
  border: none;
  box-shadow: var(--npx-shadow-lg);
}

#novelx-products-page .npx-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
}

#novelx-products-page .npx-btn-outline {
  background: #ffffff;
  border: 1px solid rgba(242, 39, 53, 0.22);
  color: var(--npx-primary);
}

#novelx-products-page .npx-btn-outline:hover {
  color: var(--npx-primary);
  background: #fff5f5;
  transform: translateY(-3px);
}

#novelx-products-page .npx-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

#novelx-products-page .npx-hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.06);
  color: var(--npx-dark);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

#novelx-products-page .npx-hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--npx-shadow);
  backdrop-filter: blur(10px);
}

#novelx-products-page .npx-hero-card-inner {
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  border: 1px solid var(--npx-border);
}

#novelx-products-page .npx-hero-card-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--npx-dark);
}

#novelx-products-page .npx-hero-card-inner p {
  color: var(--npx-text);
  line-height: 1.9;
  margin-bottom: 0;
}

#novelx-products-page .npx-intro-section,
#novelx-products-page .npx-services-section,
#novelx-products-page .npx-process-section,
#novelx-products-page .npx-audience-section,
#novelx-products-page .npx-benefits-section,
#novelx-products-page .npx-cta-section,
#novelx-products-page .npx-faq-section {
  padding: 90px 0;
}

#novelx-products-page .npx-intro-section,
#novelx-products-page .npx-audience-section,
#novelx-products-page .npx-faq-section {
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
}

#novelx-products-page .npx-services-section,
#novelx-products-page .npx-benefits-section,
#novelx-products-page .npx-cta-section {
  background: #ffffff;
}

#novelx-products-page .npx-process-section {
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

#novelx-products-page .npx-panel,
#novelx-products-page .npx-service-card,
#novelx-products-page .npx-process-card,
#novelx-products-page .npx-benefits-card,
#novelx-products-page .npx-cta-card {
  background: #ffffff;
  border: 1px solid var(--npx-border);
  border-radius: var(--npx-radius);
  box-shadow: var(--npx-shadow);
}

#novelx-products-page .npx-panel,
#novelx-products-page .npx-service-card,
#novelx-products-page .npx-process-card,
#novelx-products-page .npx-benefits-card {
  padding: 34px;
  height: 100%;
}

#novelx-products-page .npx-panel-soft {
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

#novelx-products-page .npx-panel-dark {
  background: linear-gradient(135deg, #101828 0%, #1b2434 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(16, 24, 40, 0.22);
}

#novelx-products-page .npx-panel h2,
#novelx-products-page .npx-panel h3,
#novelx-products-page .npx-service-card h3,
#novelx-products-page .npx-process-card h3,
#novelx-products-page .npx-cta-card h2,
#novelx-products-page .npx-benefits-copy h2 {
  color: var(--npx-dark);
  font-weight: 800;
  line-height: 1.2;
}

#novelx-products-page .npx-panel h2,
#novelx-products-page .npx-cta-card h2,
#novelx-products-page .npx-benefits-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 16px;
}

#novelx-products-page .npx-panel h3,
#novelx-products-page .npx-service-card h3,
#novelx-products-page .npx-process-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

#novelx-products-page .npx-panel p,
#novelx-products-page .npx-service-card p,
#novelx-products-page .npx-process-card p,
#novelx-products-page .npx-benefits-copy p,
#novelx-products-page .npx-cta-card p,
#novelx-products-page .npx-hero-card-inner p {
  color: var(--npx-text);
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 16px;
}

#novelx-products-page .npx-panel p:last-child,
#novelx-products-page .npx-service-card p:last-child,
#novelx-products-page .npx-process-card p:last-child,
#novelx-products-page .npx-benefits-copy p:last-child,
#novelx-products-page .npx-cta-card p:last-child {
  margin-bottom: 0;
}

#novelx-products-page .npx-panel-dark h2,
#novelx-products-page .npx-panel-dark h3,
#novelx-products-page .npx-panel-dark p,
#novelx-products-page .npx-panel-dark .npx-check-list li {
  color: #ffffff;
}

#novelx-products-page .npx-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

#novelx-products-page .npx-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--npx-dark);
  font-weight: 500;
  line-height: 1.85;
}

#novelx-products-page .npx-check-list li:last-child {
  margin-bottom: 0;
}

#novelx-products-page .npx-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--npx-primary);
  font-weight: 700;
}

#novelx-products-page .npx-check-list-light li::before {
  color: #ffffff;
}

#novelx-products-page .npx-service-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

#novelx-products-page .npx-service-number,
#novelx-products-page .npx-process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(242, 39, 53, 0.1);
  color: var(--npx-primary);
  font-weight: 800;
  font-size: 1rem;
}

#novelx-products-page .npx-service-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#novelx-products-page .npx-service-card:hover,
#novelx-products-page .npx-process-card:hover,
#novelx-products-page .npx-panel:hover,
#novelx-products-page .npx-benefits-card:hover {
  transform: translateY(-5px);
}

#novelx-products-page .npx-process-card {
  background: #ffffff;
}

#novelx-products-page .npx-benefits-wrap {
  border-radius: 32px;
  padding: 14px;
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
}

#novelx-products-page .npx-benefits-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

#novelx-products-page .npx-cta-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 52px 34px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(242, 39, 53, 0.08), transparent 30%),
    linear-gradient(180deg, #fffafa 0%, #ffffff 100%);
}

#novelx-products-page .npx-cta-last {
  font-weight: 700;
  color: var(--npx-dark);
}

#novelx-products-page .npx-faq-accordion {
  max-width: 980px;
  margin: 0 auto;
}

#novelx-products-page .npx-faq-accordion .accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--npx-shadow);
}

#novelx-products-page .npx-faq-accordion .accordion-button {
  background: #ffffff;
  color: var(--npx-dark);
  font-weight: 700;
  padding: 22px 24px;
  box-shadow: none;
}

#novelx-products-page .npx-faq-accordion .accordion-button:not(.collapsed) {
  background: #fff3f4;
  color: var(--npx-primary);
}

#novelx-products-page .npx-faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

#novelx-products-page .npx-faq-accordion .accordion-body {
  padding: 0 24px 24px;
  color: var(--npx-text);
  line-height: 1.9;
  background: #ffffff;
}

@media (max-width: 991.98px) {
  #novelx-products-page .npx-hero,
  #novelx-products-page .npx-intro-section,
  #novelx-products-page .npx-services-section,
  #novelx-products-page .npx-process-section,
  #novelx-products-page .npx-audience-section,
  #novelx-products-page .npx-benefits-section,
  #novelx-products-page .npx-cta-section,
  #novelx-products-page .npx-faq-section {
    padding: 70px 0;
  }

  #novelx-products-page .npx-panel,
  #novelx-products-page .npx-service-card,
  #novelx-products-page .npx-process-card,
  #novelx-products-page .npx-benefits-card,
  #novelx-products-page .npx-cta-card {
    padding: 28px;
  }
}

@media (max-width: 575.98px) {
  #novelx-products-page .npx-title {
    font-size: 2.1rem;
  }

  #novelx-products-page .npx-hero-actions {
    flex-direction: column;
  }

  #novelx-products-page .npx-btn-primary,
  #novelx-products-page .npx-btn-outline {
    width: 100%;
  }

  #novelx-products-page .npx-hero-points {
    flex-direction: column;
  }

  #novelx-products-page .npx-panel,
  #novelx-products-page .npx-service-card,
  #novelx-products-page .npx-process-card,
  #novelx-products-page .npx-benefits-card,
  #novelx-products-page .npx-cta-card {
    padding: 22px;
  }

  #novelx-products-page .npx-service-top {
    align-items: flex-start;
    flex-direction: column;
  }
}