.elementor-28065 .elementor-element.elementor-element-3722725b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-28065 .elementor-element.elementor-element-3722725b:not(.elementor-motion-effects-element-type-background), .elementor-28065 .elementor-element.elementor-element-3722725b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-accent );}.elementor-28065 .elementor-element.elementor-element-2a990e6f .elementor-menu-toggle{margin:0 auto;}.elementor-28065 .elementor-element.elementor-element-2a990e6f .elementor-nav-menu--main .elementor-item{color:var( --e-global-color-text );fill:var( --e-global-color-text );}.elementor-28065 .elementor-element.elementor-element-91973ee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-28065 .elementor-element.elementor-element-84b07fd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-28065 .elementor-element.elementor-element-77325ff{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-28065 .elementor-element.elementor-element-238b207{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-28065 .elementor-element.elementor-element-7f9a208b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-32ead80 *//* =========================
   BASE SECTION STYLING
   ========================= */
.pricing-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  font-family: 'Inter', sans-serif;
  color: #222;
}

/* =========================
   TOGGLE SECTION
   ========================= */
.pricing-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  background: #f8f8ff;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  margin: 0 auto 2.5rem auto;
  font-family: 'Inter', sans-serif;
}

.pricing-toggle span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #555;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.pricing-toggle span.active {
  color: #F97316;
  transform: scale(1.08);
}

/* TOGGLE SWITCH */
.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}
.switch input { display: none; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #3B0CA0; /* brand purple inactive */
  border-radius: 30px;
  transition: 0.3s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 22px; width: 22px;
  left: 4px; bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}
input:checked + .slider {
  background-color: #F97316; /* brand orange active */
}
input:checked + .slider:before {
  transform: translateX(26px);
}

/* =========================
   GRID LAYOUT
   ========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* =========================
   CARD STYLING
   ========================= */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.pricing-card.recommended {
  border: 2px solid #F97316;
}
.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #F97316;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: #3B0CA0;
  margin-bottom: 0.25rem;
}

.subtitle {
  color: #666;
  margin-bottom: 1.25rem;
}

/* =========================
   PRICES
   ========================= */
.price-block {
  margin-bottom: 1.5rem;
  text-align: center;
}
.setup {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3B0CA0;
  display: none;
}
.price.monthly.active,
.price.annual.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-block;
  text-decoration: none;
  background: #3B0CA0;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn:hover {
  background: #F97316;
}

/* =========================
   DETAILS / FEATURES
   ========================= */
details {
  margin-top: 1rem;
}
summary {
  cursor: pointer;
  font-weight: 600;
  color: #3B0CA0;
  list-style: none;
}
summary::marker { display: none; }
details ul {
  margin: 1rem 0 0 1rem;
  list-style: disc;
  color: #333;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .pricing-toggle span {
    font-size: 1.15rem;
  }
  .pricing-card {
    padding: 1.75rem 1.25rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4e34102 */.toggle-label.active {
  color: #111;
  font-weight: 700;
}
.toggle-label:not(.active) {
  opacity: 0.6;
}/* End custom CSS */
/* Start custom CSS for global, class: .elementor-global-28504 *//* ===============================
   SECTION 7 – FOOTER
   BonPapi Velvet Edition
   =============================== */
.bonpapi-footer {
  background: linear-gradient(135deg, #4A3366 0%, #7B5FB5 100%);
  color: #ffffff;
  padding: 6rem 1.5rem 4rem;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Top Branding ===== */
.footer-top {
  text-align: center;
  margin-bottom: 4rem;
}
.footer-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
}
.footer-tagline {
  color: #f5f2ff;
  font-size: 1.7rem;
  line-height: 1.6;
}

/* ===== Grid ===== */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  text-align: left;
}
.footer-col h4 {
  color: #F4A900;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: #F4A900;
}

/* ===== Contact & Socials ===== */
.footer-contact li {
  color: #eae6f7;
  font-size: 1.6rem;
}
.footer-socials {
  margin-top: 1.5rem;
}
.footer-socials a {
  display: inline-block;
  color: #ffffff;
  margin-right: 1.2rem;
  font-size: 1.8rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.footer-socials a:hover {
  color: #F4A900;
  transform: translateY(-3px);
}

/* ===== Bottom ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 1.5rem;
  color: #d8d3e9;
}
.footer-bottom a {
  color: #F4A900;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .bonpapi-footer {
    padding: 5rem 1.5rem 3rem;
  }
  .footer-top {
    margin-bottom: 3rem;
  }
}/* End custom CSS */