/* ============================================================
   PRICING PAGE TOP ACCENT LINE  —  pricing_topline.css
   Adds the same green gradient 3px top border as the About Us
   hero to the pricing hero and FAQ sections.
   Add this <link> in your pricing page <head>.
   ============================================================ */

/* Pricing hero — the "PRICING / Our Pricing" section */
.pricing .frame-parent {
  position: relative;
}

.pricing .frame-parent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #008b00 35%,
    #aee166 65%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
}

/* FAQ section */
.pricing .faq {
  position: relative;
}

.pricing .faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #008b00 35%,
    #aee166 65%,
    transparent 100%
  );
  z-index: 10;
  pointer-events: none;
}