/* ==========================================================================
   Quad Template Theme Fidelity & Enhancements
   ========================================================================== */

/* 0. Fallback for AOS only if explicitly marked .no-aos */
.no-aos [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* 1. Natural window scrolling across the entire page */
html {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh !important;
  scroll-behavior: smooth !important;
}

body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: 100vh !important;
  position: static !important;
}

#root {
  overflow: visible !important;
  height: auto !important;
  min-height: 100vh !important;
  position: static !important;
}

.landing-container.quad-page-wrapper {
  position: relative !important;
  width: 100% !important;
  min-height: 100vh !important;
  height: auto !important;
  font-family: 'Figtree', sans-serif;
  overflow-x: hidden !important;
  overflow-y: visible !important;
  background-color: #ffffff;
}

/* 2. Top Scroll Progress Bar */
.quad-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #38bdf8, #2563eb);
  z-index: 99999;
  transition: width 0.1s ease-out;
}

/* 3. Quad Header Styling & Reset from App */
.header-area.homepage1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s ease-in-out;
}

.header-area.homepage1.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0d0e10 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 99999 !important;
  animation: quadFadeDown 0.4s ease forwards;
}

@keyframes quadFadeDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-area.homepage1 .navbar {
  display: block;
  padding: 0;
}

.header-area.homepage1 .header-elements {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 24px;
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.25) -10.29%, rgba(255, 255, 255, 0.08) 98.27%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 35px;
  transition: all 0.4s ease-in-out;
}

.header-area.homepage1.sticky .header-elements {
  margin-top: 0;
  border: none;
  background: none;
  backdrop-filter: none;
  padding: 14px 0;
}

/* Force main-menu list to be horizontal row with inline items */
.header-area.homepage1 .main-menu {
  display: block !important;
}

.header-area.homepage1 .main-menu ul.nav,
.header-area.homepage1 .main-menu ul.nav-pills {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.header-area.homepage1 .main-menu ul li.nav-item {
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.header-area.homepage1 .main-menu ul li.nav-item a.nav-link {
  display: inline-block !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  opacity: 0.9 !important;
  padding: 8px 14px !important;
  border-radius: 20px !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.header-area.homepage1 .main-menu ul li.nav-item a.nav-link:hover,
.header-area.homepage1 .main-menu ul li.nav-item a.nav-link.active {
  color: #ffffff !important;
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Header CTA Button in navbar */
.header-area.homepage1 .cta-btn a.header-btn,
.header-area.homepage1 .cta-btn button.header-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  background: #433CE7 !important;
  color: #FFF !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  padding: 16px 28px !important;
  transition: all 0.4s ease-in-out !important;
  position: relative !important;
  z-index: 1 !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

.header-area.homepage1 .cta-btn a.header-btn::after,
.header-area.homepage1 .cta-btn button.header-btn::after {
  position: absolute;
  content: "";
  left: 50%;
  right: 50%;
  height: 20px;
  width: 20px;
  top: 14px;
  border-radius: 50%;
  background: #2921D3;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.header-area.homepage1 .cta-btn a.header-btn:hover,
.header-area.homepage1 .cta-btn button.header-btn:hover {
  transform: translateY(-5px) !important;
  color: #FFF !important;
}

.header-area.homepage1 .cta-btn a.header-btn:hover::after,
.header-area.homepage1 .cta-btn button.header-btn:hover::after {
  visibility: visible;
  opacity: 1;
  height: 100%;
  width: 100%;
  border-radius: 25px;
  left: 0;
  top: 0;
}

.header-area.homepage1 .cta-btn a.header-btn i,
.header-area.homepage1 .cta-btn button.header-btn i {
  margin-left: 6px;
  transform: rotate(-45deg);
  display: inline-block;
}

/* 4. Quad Welcome / Hero Section exact typography & buttons */
.welocme1-section-area {
  position: relative;
  padding: 190px 0 320px !important;
  min-height: 860px;
  background-color: #0a0b27 !important;
  background-image: url('/assets/images/background/header-bg1.png') !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: visible !important;
}

@media (max-width: 767px) {
  .welocme1-section-area {
    padding: 130px 0 200px !important;
    min-height: auto;
  }
}

.welocme1-section-area .welcome-content-header h1 {
  color: #ffffff !important;
  text-align: center;
  font-family: "Figtree", sans-serif;
  font-size: clamp(32px, 5vw, 65px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
  position: relative;
}

.welocme1-section-area .welcome-content-header p {
  color: rgba(255, 255, 255, 0.85) !important;
  text-align: center;
  font-family: "Figtree", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.welocme1-section-area .welcome-btnarea {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Universal Quad Buttons */
a.header-btn,
button.header-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  background: #433CE7 !important;
  color: #FFF !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  padding: 16px 28px !important;
  transition: all 0.4s ease-in-out !important;
  position: relative !important;
  z-index: 1 !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

a.header-btn::after,
button.header-btn::after {
  position: absolute;
  content: "";
  left: 50%;
  right: 50%;
  height: 20px;
  width: 20px;
  top: 14px;
  border-radius: 50%;
  background: #2921D3;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

a.header-btn:hover,
button.header-btn:hover {
  transform: translateY(-5px) !important;
  color: #FFF !important;
}

a.header-btn:hover::after,
button.header-btn:hover::after {
  visibility: visible;
  opacity: 1;
  height: 100%;
  width: 100%;
  border-radius: 25px;
  left: 0;
  top: 0;
}

a.header-btn i,
button.header-btn i {
  margin-left: 6px;
  transform: rotate(-45deg);
  display: inline-block;
}

a.header-btn1,
button.header-btn1 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  border: 1px solid #FFF !important;
  background: transparent !important;
  color: #FFF !important;
  font-family: "Figtree", sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 16px !important;
  padding: 16px 28px !important;
  transition: all 0.4s ease-in-out !important;
  position: relative !important;
  z-index: 1 !important;
  cursor: pointer !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

a.header-btn1::after,
button.header-btn1::after {
  position: absolute;
  content: "";
  left: 50%;
  right: 50%;
  height: 20px;
  width: 20px;
  top: 14px;
  border-radius: 50%;
  background: #2921D3;
  border: 1px solid #2921D3;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

a.header-btn1:hover,
button.header-btn1:hover {
  transform: translateY(-5px) !important;
  border: 1px solid #2921D3 !important;
  color: #FFF !important;
}

a.header-btn1:hover::after,
button.header-btn1:hover::after {
  visibility: visible;
  opacity: 1;
  height: 100%;
  width: 100%;
  border-radius: 25px;
  left: 0;
  top: 0;
}

a.header-btn1 i,
button.header-btn1 i {
  margin-left: 6px;
  transform: rotate(-45deg);
  display: inline-block;
}

/* 5. Swiper / Showcase Container */
/* Override master.css bottom: 170px positioning */
.swiper-container {
  width: 100%;
  position: relative;
  bottom: auto !important;
  margin-top: -240px;
  z-index: 10;
  overflow: visible;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .swiper-container {
    margin-top: -120px;
    padding-bottom: 40px;
    height: auto !important;
  }
}

/* Override master.css !important transform rules that break Swiper JS coverflow */
.swiper-container .swiper-slide {
  transform: unset !important;
}
.swiper-container .swiper-slide-duplicate {
  transform: unset !important;
}
.swiper-container .swiper-slide-next {
  transform: unset !important;
  position: unset !important;
  right: unset !important;
}
.swiper-container .swiper-slide-active {
  transform: unset !important;
  position: unset !important;
}
.swiper-container .swiper-slide-prev {
  transform: unset !important;
  position: unset !important;
  left: unset !important;
}

/* Fix swiper-slide image display */
.swiper-container .swiper-slide img.entity-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Swiper pagination positioning */
.swiper-container .swiper-pagination {
  position: relative !important;
  top: auto !important;
  margin-top: 30px !important;
}

.swiper-pagination.swiper-pagination-bullets {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px;
  margin-top: 36px;
  position: relative;
  z-index: 10;
}


.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background-color: #433CE7 !important;
  border: 2px solid #433CE7 !important;
  border-radius: 50% !important;
  padding: 0 !important;
  margin: 0 4px !important;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #433CE7 !important;
  transform: scale(1.3);
}

.swiper-pagination-bullets .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #433CE7;
  border-radius: 50%;
}

/* 6. Marquee Ticker exact animation */
@keyframes quadMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes quadMarqueeRev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.slider1-section-area .marquee-wrap .marquee-text {
  display: flex !important;
  width: max-content !important;
  animation: quadMarquee 30s linear infinite !important;
}

.brand-section-area {
  background-color: #433CE7 !important;
  position: relative;
}

.brand-section-area .brand-header span,
.brand-section-area .brand-header h2 {
  color: #ffffff !important;
}

.brand-section-area .marquee-wrap,
.brand-section-area .marquee-wrap2 {
  background-color: #433CE7 !important;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.brand-section-area .marquee-wrap .marquee-text {
  display: flex !important;
  width: max-content !important;
  animation: quadMarquee 35s linear infinite !important;
}

.brand-section-area .marquee-wrap2 .marquee-text {
  display: flex !important;
  width: max-content !important;
  animation: quadMarqueeRev 35s linear infinite !important;
}

.marquee-wrap:hover .marquee-text,
.marquee-wrap2:hover .marquee-text {
  animation-play-state: paused !important;
}

/* 7. Tab active state transitions */
.service-vertical-tabs .service-tabs-content li {
  display: none;
}

.service-vertical-tabs .service-tabs-content li.active {
  display: block;
  animation: quadFade 0.4s ease;
}

.service-vertical-tabs .menu div span.light {
  height: 10px;
  width: 10px;
  position: absolute;
  top: 24px;
  left: 15px;
  border-radius: 100%;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.service-vertical-tabs .menu div.active span.light {
  left: 0;
  height: 100%;
  width: 3px;
  top: 0;
  border-radius: 0;
}

.service-vertical-tabs .menu div.active .tabs-content-area {
  background: #433CE7 !important;
}

.service-vertical-tabs .menu div.active .tabs-content-area .tabs-btn-icon {
  background: #ffffff !important;
}

.service-vertical-tabs .menu div.active .tabs-content-area .tabs-btn-content h4 {
  color: #ffffff !important;
}

.service-vertical-tabs .menu div.active .tabs-content-area .tabs-btn-content p {
  color: #ffffff !important;
  opacity: 0.7;
}

/* More Features Box & Hover */
.more-features-scetion-area .more-features-box {
  transition: all 0.4s ease-in-out;
}

.more-features-scetion-area .more-features-box:hover {
  transform: translateY(-5px);
  background: #433CE7 !important;
}

.more-features-scetion-area .more-features-box:hover .features-icon {
  background: #ffffff !important;
}

.more-features-scetion-area .more-features-box:hover a {
  color: #ffffff !important;
}

.more-features-scetion-area .more-features-box:hover p {
  color: #ffffff !important;
  opacity: 0.7;
}

.more-features-scetion-area .more-features-box:hover a.learnmore {
  color: #ffffff !important;
}

.more-features-scetion-area .more-features-box a.learnmore i {
  margin-left: 4px;
  transform: rotate(-45deg);
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Testimonial arrows */
.testimonial1-section-area .testimonial-sliders .testimonial-arrows .testimonial-prev-arrow button,
.testimonial1-section-area .testimonial-sliders .testimonial-arrows .testimonial-next-arrow button {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  background: #D9D8FA;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.testimonial1-section-area .testimonial-sliders .testimonial-arrows .testimonial-prev-arrow button:hover,
.testimonial1-section-area .testimonial-sliders .testimonial-arrows .testimonial-next-arrow button:hover {
  background: #433CE7;
  color: #ffffff;
}

.works1-section-area .tabContainer .Tabcondent {
  display: none;
}

.works1-section-area .tabContainer .Tabcondent.active {
  display: block;
  animation: quadFade 0.4s ease;
}

.works1-section-area .works-bg-area .tabs-button .nav-work a.active {
  background: #433CE7 !important;
  color: #ffffff !important;
}

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

/* 8. Pricing Plan Toggle */
.plan-toggle-wrap .toggle-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid #e2e8f0;
}

.plan-toggle-wrap .toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cbd5e1;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.plan-toggle-wrap .toggle-switch.annual {
  background: #433CE7;
}

.plan-toggle-wrap .toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.plan-toggle-wrap .toggle-switch.annual::after {
  transform: translateX(24px);
}

/* 9. Mobile Sidebar drawer */
.mobile-sidebar.mobile-sidebar1 {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  z-index: 99999;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.mobile-sidebar1.mobile-menu-active {
  right: 0 !important;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* 10. Back to top button */
.quad-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #433CE7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(67, 60, 231, 0.35);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border: none;
}

.quad-back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.quad-back-to-top:hover {
  background: #2921D3;
  transform: translateY(-3px);
}

/* ==========================================================================
   11. Pricing Section Enhancements
   ========================================================================== */
.pricing-paln-section-area.pricing2 {
  position: relative;
  background-color: #FAFAFC;
  padding: 100px 0 110px;
}

.pricing-paln-section-area .pricing-header span.seo {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #433CE7;
  display: inline-block;
  margin-bottom: 12px;
}

.pricing-paln-section-area .pricing-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0E101A;
  line-height: 1.25;
  margin-bottom: 24px;
}

.plan-toggle-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #EDEDF2;
}

.plan-toggle-wrap .toggle-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.plan-toggle-wrap .t-label {
  font-size: 15px;
  font-weight: 600;
  color: #5D6374;
  transition: color 0.3s ease;
}

.plan-toggle-wrap .t-label.active {
  color: #433CE7;
  font-weight: 700;
}

.plan-toggle-wrap .toggle-pill {
  width: 52px;
  height: 28px;
  background: #E2E4EB;
  border-radius: 30px;
  position: relative;
  transition: background 0.3s ease;
}

.plan-toggle-wrap .toggle-pill.active {
  background: #433CE7;
}

.plan-toggle-wrap .toggle-pill::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.plan-toggle-wrap .toggle-pill.active::after {
  transform: translateX(24px);
}

.pricing-discount-badge {
  background: rgba(67, 60, 231, 0.1);
  color: #433CE7;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 6px;
}

.pricing-paln-section-area .price-box {
  background: #ffffff;
  border: 1px solid #EBECEF;
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-paln-section-area .price-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(67, 60, 231, 0.12);
  border-color: #433CE7;
}

.pricing-paln-section-area .price-box.featured {
  border: 2px solid #433CE7;
  box-shadow: 0 16px 36px rgba(67, 60, 231, 0.1);
  position: relative;
}

.pricing-paln-section-area .pricing-area.bg2 .popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #433CE7;
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-paln-section-area .price-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0E101A;
  margin-bottom: 12px;
}

.pricing-paln-section-area .pricing-heading {
  font-size: 44px;
  font-weight: 800;
  color: #0E101A;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-paln-section-area .pricing-heading span {
  font-size: 16px;
  font-weight: 500;
  color: #6C7280;
}

.pricing-paln-section-area .price-box p {
  font-size: 14px;
  color: #5D6374;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-paln-section-area .price-list {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #EDEDF2;
}

.pricing-paln-section-area .price-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-paln-section-area .price-list ul li {
  font-size: 14px;
  color: #404452;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.pricing-paln-section-area .price-list ul li img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: #433CE7;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing-btn-primary:hover {
  background: #2E27C9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 60, 231, 0.35);
}

.pricing-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: rgba(67, 60, 231, 0.08);
  color: #433CE7 !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing-btn-secondary:hover {
  background: #433CE7;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   12. FAQ Section Enhancements
   ========================================================================== */
.faq-inner-section-area {
  position: relative;
  background: #ffffff;
  padding: 100px 0 110px;
}

.faq-inner-header span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #433CE7;
  display: inline-block;
  margin-bottom: 12px;
}

.faq-inner-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0E101A;
  margin-bottom: 16px;
}

.faq-inner-header p {
  font-size: 16px;
  color: #5D6374;
  max-width: 600px;
  margin: 0 auto;
}

.quad-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 50px;
}

.quad-faq-item {
  border: 1px solid #EDEDF2;
  border-radius: 14px;
  background: #ffffff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.quad-faq-item.active {
  border-color: #433CE7;
  box-shadow: 0 8px 24px rgba(67, 60, 231, 0.08);
}

.quad-faq-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 700;
  color: #0E101A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.3s ease;
}

.quad-faq-item.active .quad-faq-button {
  color: #433CE7;
}

.quad-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(67, 60, 231, 0.08);
  color: #433CE7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.quad-faq-item.active .quad-faq-icon {
  background: #433CE7;
  color: #ffffff;
  transform: rotate(180deg);
}

.quad-faq-body {
  padding: 0 28px 24px;
  font-size: 15px;
  color: #5D6374;
  line-height: 1.7;
}

