/* ============================================================
   PRICING PAGE — REPLACE DOT PATTERN
   Swaps the sharp triangle dot grid for the soft circular
   dot grid used on the About Us hero page.
   Add this <link> after your existing pricing CSS in <head>.
   ============================================================ */

/* Hide the existing hard triangle pattern image */
.pricing .pa-hero-pattern {
  display: none;
}

/* Inject the soft dot grid as a pseudo-element on the pricing wrapper */
.pricing .frame-parent {
  position: relative;
  overflow: hidden;
}
/* ============================================================
   PRICING PAGE — DOT GRID PATTERN
   Positions the inline SVG dot grid identically to About Us.
   Add this <link> after your existing pricing CSS in <head>.
   ============================================================ */

.pricing .frame-parent {
  position: relative;
}

.pricing .frame-parent .ab-dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}