@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-purple: #9b4dca;
  --accent-orange: #ff7e5f;
  --star-yellow: #ffeb3b;
  --bg-cream: #fffdf5;
  --text-ink: #4a4a4a;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem rgba(255,255,255,0.9), 0 0 0 0.25rem rgba(155, 77, 202, 0.28);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  background-color: var(--bg-cream);
  color: var(--text-ink);
  overflow-x: hidden;
}

.mfb2-body a:not(.btn):not(.nav-link):not(.mfb2-whatsapp-float):not(.mfbx-footer-social) {
  color: var(--primary-purple);
}

.mfb2-body a:not(.btn):not(.nav-link):not(.mfb2-whatsapp-float):not(.mfbx-footer-social):hover {
  color: #843bb7;
}

.mfb-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(155, 77, 202, 0.18) 0%, rgba(155, 77, 202, 0) 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(255, 126, 95, 0.16) 0%, rgba(255, 126, 95, 0) 55%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 253, 245, 0.88) 55%, rgba(255, 253, 245, 1) 100%);
}

.mfb-hero__blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.55;
  animation: mfb-float 10s ease-in-out infinite;
}

.mfb-hero__blob--a {
  left: -120px;
  top: -120px;
  background: rgba(155, 77, 202, 0.55);
}

.mfb-hero__blob--b {
  right: -140px;
  top: 40px;
  background: rgba(255, 126, 95, 0.55);
  animation-duration: 12s;
  animation-delay: -2s;
}

.mfb-hero__blob--c {
  left: 35%;
  bottom: -180px;
  background: rgba(220, 214, 247, 0.75);
  animation-duration: 14s;
  animation-delay: -5s;
}

@keyframes mfb-float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(18px) translateX(10px) scale(1.05); }
}

.mfb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(155, 77, 202, 0.18);
  backdrop-filter: blur(10px);
}

.mfb-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 8px 30px rgba(2, 8, 23, 0.06);
}

.mfb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(2, 8, 23, 0.12);
}

.mfb-design-tile {
  height: 130px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,165,233,0.18) 0%, rgba(99,102,241,0.16) 50%, rgba(34,211,238,0.14) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.mfb-fade-in {
  animation: mfb-fade 700ms ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes mfb-fade {
  to { opacity: 1; transform: translateY(0); }
}

.mfb2-body {
  font-family: "Quicksand", sans-serif;
  background: var(--bg-cream);
  color: var(--text-ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 84px;
}

.mfb2-body > main {
  flex: 1 0 auto;
}

@media (max-width: 575.98px) {
  .mfb2-body .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mfb2-hero {
    padding: 52px 0 56px;
  }

  .mfb2-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .mfb2-phone {
    width: 250px;
    height: 500px;
    border-width: 10px;
    border-radius: 2.5rem;
  }

  .mfb2-phone-overlay {
    padding: 18px;
  }
}

.mfb2-body h1,
.mfb2-body h2,
.mfb2-body h3,
.mfb2-body h4,
.mfb2-body h5 {
  font-family: "Quicksand", sans-serif;
  letter-spacing: -0.02em;
}

.mfb2-gradient-text {
  background: linear-gradient(90deg, var(--primary-purple), var(--accent-orange), var(--star-yellow));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mfb2-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  min-height: 80px;
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155, 77, 202, 0.14);
  box-shadow: 0 10px 30px rgba(155, 77, 202, 0.10);
}

.mfb2-body .btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.mfb2-body .btn:active {
  transform: translateY(1px);
}

.mfb2-body .btn-primary,
.mfbx-btn-primary {
  border: 0;
  background: var(--primary-purple);
  color: #fff;
  box-shadow: 0 14px 34px rgba(155, 77, 202, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease;
}

.mfb2-body .btn-primary:hover,
.mfbx-btn-primary:hover {
  background: #843bb7;
  box-shadow: 0 18px 44px rgba(155, 77, 202, 0.28);
}

.mfb2-body .btn-outline-primary,
.mfb2-body .btn-outline-secondary {
  border-color: rgba(155, 77, 202, 0.35);
  color: rgba(74, 74, 74, 0.92);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
}

.mfb2-body .btn-outline-primary:hover,
.mfb2-body .btn-outline-secondary:hover {
  border-color: rgba(155, 77, 202, 0.55);
  color: #4c1d95;
  background: rgba(255,255,255,0.92);
}

.mfb2-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(155, 77, 202, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--star-yellow);
}

.mfb2-navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
}

.mfb2-brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: calc(100vw - 150px);
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .mfb2-brand-logo {
    height: 40px;
  }
}

@media (min-width: 992px) {
  .mfb2-brand-logo {
    height: 50px;
    max-width: none;
  }
}

.mfb2-nav-link {
  font-weight: 700;
  color: rgba(74, 74, 74, 0.92) !important;
}

.mfb2-nav-link:hover {
  color: var(--primary-purple) !important;
}

.mfb2-nav-link.mfbx-nav-cta {
  background: var(--primary-purple);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(155, 77, 202, 0.22);
}

.mfb2-nav-link.mfbx-nav-cta:hover {
  background: #843bb7;
  color: #fff !important;
}

.mfb2-account-btn {
  background: rgba(255,255,255,0.84);
  color: var(--primary-purple);
  border: 1px solid rgba(155, 77, 202, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}

.mfb2-account-btn:hover {
  background: #843bb7;
  color: #fff;
  border-color: #843bb7;
}

.mfb2-hero {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
  background: radial-gradient(900px 520px at 20% 18%, rgba(155, 77, 202, 0.14) 0%, rgba(155, 77, 202, 0) 55%),
              radial-gradient(900px 520px at 86% 22%, rgba(255, 126, 95, 0.14) 0%, rgba(255, 126, 95, 0) 55%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 253, 245, 0.85) 100%);
}

.mfbx-landing .mfb2-hero {
  padding-top: 44px;
}

@media (max-width: 575.98px) {
  .mfbx-landing .mfb2-hero {
    padding-top: 32px;
  }
}

@media (max-width: 991.98px) {
  .mfb2-navbar .navbar-collapse {
    margin-top: 12px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(155, 77, 202, 0.14);
    background: rgba(255, 253, 245, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(155, 77, 202, 0.12);
  }

  .mfb2-navbar .navbar-nav {
    gap: 8px;
  }

  .mfb2-navbar .navbar-nav .nav-link {
    padding: 10px 12px;
  }

  .mfb2-navbar .mfb2-nav-link.mfbx-nav-cta::after {
    display: none;
  }

  .mfb2-navbar .mfb2-nav-link.mfbx-nav-cta {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }

  .mfb2-navbar .mfb2-account-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    padding: 10px 18px;
  }
}

.mfb2-chip,
.mfb2-section-chip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 126, 95, 0.14);
  border: 1px solid rgba(155, 77, 202, 0.16);
  color: rgba(255, 126, 95, 0.95);
  backdrop-filter: blur(12px);
}

.mfb2-title {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 900;
}

.mfb2-subtitle {
  color: rgba(74, 74, 74, 0.78);
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
  max-width: 620px;
}

.mfb2-btn-pink,
.mfb2-btn-primary {
  background: var(--primary-purple);
  color: #fff;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  border: none;
  box-shadow: 0 18px 44px rgba(155, 77, 202, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.mfb2-btn-pink:hover,
.mfb2-btn-primary:hover {
  background: #843bb7;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 26px 56px rgba(155, 77, 202, 0.28);
}

.mfb2-btn-outline {
  border: 2px solid rgba(155, 77, 202, 0.28);
  color: rgba(155, 77, 202, 0.98);
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.mfb2-btn-outline:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(155, 77, 202, 0.45);
  color: rgba(132, 59, 183, 1);
  transform: translateY(-2px);
}

.mfb2-phone {
  width: 290px;
  height: 560px;
  margin: 0 auto;
  border-radius: 3rem;
  border: 12px solid #0f172a;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.25);
  position: relative;
}

.mfbx-demo-phone {
  background: radial-gradient(320px 260px at 50% 22%, rgba(155, 77, 202, 0.10) 0%, rgba(155, 77, 202, 0) 70%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 253, 245, 0.95) 100%);
}

.mfbx-demo-viewport {
  position: absolute;
  inset: 12px;
  border-radius: 2.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.10);
}

.mfbx-demo-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.mfbx-demo-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  opacity: 0.95;
}

.mfbx-demo-scroll-hint.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

.mfbx-demo-scroll-pill {
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(2, 8, 23, 0.20);
  font-size: 12px;
  line-height: 1;
}

.mfbx-demo-scroll-label-desktop { display: none; }

@media (pointer: fine) and (min-width: 992px) {
  .mfbx-demo-scroll-label-mobile { display: none; }
  .mfbx-demo-scroll-label-desktop { display: inline; }
}

.mfbx-demo-scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 4px solid rgba(255,255,255,0.92);
  border-bottom: 4px solid rgba(255,255,255,0.92);
  transform: rotate(45deg);
  filter: drop-shadow(0 10px 18px rgba(2, 8, 23, 0.30));
  animation: mfbx-demo-bounce 1.2s ease-in-out infinite;
}

@keyframes mfbx-demo-bounce {
  0%, 100% { transform: rotate(45deg) translate3d(0, 0, 0); opacity: 0.85; }
  50% { transform: rotate(45deg) translate3d(0, 10px, 0); opacity: 1; }
}

.mfb2-phone-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 41, 59, 0.85) 75%);
  color: #fff;
  padding: 22px;
}

.mfb2-label {
  color: #fde047;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  margin-bottom: 4px;
}

.mfb2-phone-title {
  margin: 0;
  font-size: 1.8rem;
}

.mfb2-phone-sub {
  font-size: 0.86rem;
  margin-top: 4px;
  opacity: 0.9;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.mfb2-section-title {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 700;
}

.mfb2-step-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 24px;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mfb2-step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(155, 77, 202, 0.25);
}

.mfb2-step-card h3 {
  margin: 12px 0 8px;
}

.mfb2-step-card p {
  color: #64748b;
  margin: 0;
}

.mfb2-step-num {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
}

.mfb2-design-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 24px rgba(155, 77, 202, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mfb2-design-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(155, 77, 202, 0.25);
}

.mfb2-design-image {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  background-color: #fff;
  background: linear-gradient(135deg, rgba(155, 77, 202, 0.16) 0%, rgba(255, 126, 95, 0.14) 55%, rgba(255, 253, 245, 1) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mfb2-design-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.mfb2-price-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 30px;
  padding: 34px 30px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.mfb2-price-card-active {
  border: 2px solid var(--primary-purple);
  transform: scale(1.03);
}

.mfb2-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.mfb2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mfb2-list li {
  margin-bottom: 10px;
  color: #475569;
  position: relative;
  padding-left: 18px;
}

.mfb2-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-orange);
  position: absolute;
  left: 0;
  top: 9px;
}

.mfb2-faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.mfb2-faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
}

.mfb2-faq-item h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.mfb2-faq-item p {
  margin: 0;
  color: #64748b;
}

.mfb2-testimonials {
  background: rgba(155, 77, 202, 0.08);
}

.mfb2-carousel {
  overflow: hidden;
  max-width: 850px;
  margin: 0 auto;
}

.mfb2-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.mfb2-slide {
  min-width: 100%;
}

.mfb2-testimonial-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.mfb2-testimonial-card p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 10px;
}

.mfb2-testimonial-card h5 {
  margin: 0;
}

.mfb2-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.mfb2-dot-active {
  background: var(--primary-purple);
}

.mfb2-contact-box {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.mfb2-input {
  border-radius: 16px;
  border: none;
  background: #f8fafc;
  padding: 14px 16px;
}

.mfb2-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(155, 77, 202, 0.16);
  background: #fff;
}

.mfb2-whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 24px;
  text-decoration: none;
  color: #fff;
  background: #25d366;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  z-index: 3700;
  transition: transform 220ms ease, background 220ms ease;
}

.mfb2-whatsapp-float:hover {
  transform: scale(1.08);
  background: #128c7e;
  color: #fff;
}

.mfbx-wa-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.mfbx-wa-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
  border: 2px solid #fff;
}

.mfbx-wa-text {
  font-weight: 900;
  font-size: 14px;
}

.mfbx-footer-brand {
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 18px;
}

.mfbx-footer-tagline {
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 10px;
  color: rgba(255, 126, 95, 0.95);
}

.mfbx-footer-logo {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 253, 245, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.mfb2-brand-icon img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: contain;
  padding: 4px;
}

.mfbx-footer-social {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 18px;
  transition: color 160ms ease, transform 160ms ease;
}

.mfbx-footer-social:hover {
  color: #fff;
  transform: translateY(-1px);
}

.mfb2-footer {
  background: #111827;
}

.mfb2-magic-particle {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(0.2px);
  box-shadow: 0 0 18px rgba(255,255,255,0.35);
  animation: mfb2-float-particle 10s linear infinite;
}

.mfbx-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3500;
  overflow: hidden;
  mix-blend-mode: screen;
}

@keyframes mfb2-float-particle {
  from { transform: translate3d(0, 110vh, 0) translateX(0) scale(1); }
  to { transform: translate3d(0, -12vh, 0) translateX(var(--mfb2-drift, 20px)) scale(0); }
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: rgba(220, 214, 247, 1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-purple); }

.mfb2-magic-particle {
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.22) 22%, var(--mfb2-color, rgba(96,165,250,0.9)) 54%, rgba(255,255,255,0) 72%);
  background-color: var(--mfb2-color, rgba(96,165,250,0.9));
  filter: blur(0.15px);
  box-shadow: 0 0 30px rgba(255,255,255,0.42);
  will-change: transform;
}

.mfbx-parallax-layer.mfbx-layer-art {
  z-index: 1;
  opacity: 0.95;
  filter: drop-shadow(0 30px 60px rgba(2, 8, 23, 0.12));
}

.mfb2-body {
  background: var(--bg-cream);
  margin-bottom: 0;
}

.mfbx-landing {
  position: relative;
  background-color: #fff8ef;
  background-image: radial-gradient(rgba(42,8,69,0.08) 1px, rgba(0,0,0,0) 1px);
  background-size: 24px 24px;
  background-position: 0 0;
}

.mfbx-landing {
  --mfbx-purple: #682697;
  --mfbx-orange: #f76c34;
  --mfbx-yellow: #fcac46;
  --mfbx-pink: #ed488b;
  --mfbx-ink: #2a0845;
  --mfbx-cream: #fff8ef;
}

.mfbx-landing .mfb2-btn-pink {
  background: var(--mfbx-purple);
  border-color: var(--mfbx-purple);
}

.mfbx-landing .mfb2-btn-pink:hover {
  background: #571c80;
  border-color: #571c80;
}

.mfbx-landing .mfb2-btn-outline {
  border-color: rgba(104, 38, 151, 0.32);
  color: var(--mfbx-ink);
}

.mfbx-landing .mfb2-btn-outline:hover {
  border-color: rgba(104, 38, 151, 0.55);
  color: #1f062f;
}

.mfbx-carousel {
  border-radius: 22px;
  border: 1px solid rgba(155, 77, 202, 0.14);
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.10);
  overflow: hidden;
}

.mfbx-testimonial-card {
  padding: 26px 22px;
  text-align: center;
}

.mfbx-testimonial-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.mfbx-testimonial-quote {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.mfbx-testimonial-name {
  margin-top: 14px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.86);
}

.mfbx-carousel-indicators {
  margin-bottom: 10px;
}

.mfbx-carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background-color: rgba(104, 38, 151, 0.22);
}

.mfbx-carousel-indicators .active {
  background-color: rgba(104, 38, 151, 0.82);
}

.mfbx-carousel-prev,
.mfbx-carousel-next {
  width: 52px;
  opacity: 1;
}

.mfbx-carousel-prev .carousel-control-prev-icon,
.mfbx-carousel-next .carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.12);
  background-size: 55% 55%;
}

.mfbx-spin-in {
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.mfbx-spin-in.mfbx-reveal-in {
  animation: mfbx-spin-in 750ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes mfbx-spin-in {
  0% { transform: perspective(900px) rotateY(-14deg) rotateX(8deg) scale(0.98); opacity: 0; }
  100% { transform: perspective(900px) rotateY(0deg) rotateX(0deg) scale(1); opacity: 1; }
}

.mfbx-landing h1,
.mfbx-landing h2,
.mfbx-landing h3,
.mfbx-landing h4 {
  font-family: "Quicksand", sans-serif;
  letter-spacing: -0.02em;
}

.mfbx-landing .mfb2-chip,
.mfbx-landing .mfb2-section-chip {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
}

.mfbx-landing .mfb2-title {
  font-weight: 800;
  color: var(--mfbx-ink);
}

.mfbx-landing .mfb2-subtitle {
  color: rgba(15, 23, 42, 0.70);
  font-weight: 600;
}

.mfbx-landing p {
  text-align: justify;
}

.mfbx-landing .text-center p {
  text-align: center;
}

.mfbx-landing .mfbx-hero-actions {
  justify-content: center;
}

.mfbx-accordion {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(2, 8, 23, 0.08);
}

.mfbx-accordion-item {
  border: none;
  background: transparent;
}

.mfbx-accordion-btn {
  background: rgba(255, 255, 255, 0.35);
  font-weight: 800;
  color: #0f172a;
  padding: 18px 18px;
}

.mfbx-accordion-btn:focus {
  box-shadow: none;
}

.mfbx-accordion-btn:not(.collapsed) {
  background: rgba(255, 255, 255, 0.55);
}

.mfbx-accordion-body {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 600;
  padding: 0 18px 18px 18px;
}

.mfbx-accordion2 {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 18px auto 0;
  background: transparent;
}

.mfbx-accordion2-item {
  border: 1px solid rgba(155, 77, 202, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.08);
  overflow: hidden;
}

.mfbx-accordion2-btn {
  background: transparent;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.88);
  padding: 20px 20px;
}

.mfbx-accordion2-btn:focus {
  box-shadow: none;
}

.mfbx-accordion2-btn::after {
  background-size: 16px 16px;
  opacity: 0.85;
}

.mfbx-accordion2-body {
  padding: 0 20px 20px 20px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 650;
  line-height: 1.6;
}

.mfbx-accordion3 {
  max-width: 980px;
  margin: 18px auto 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(155, 77, 202, 0.14);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.08);
}

.mfbx-accordion3-item {
  border: none;
  background: transparent;
}

.mfbx-accordion3-item + .mfbx-accordion3-item {
  border-top: 1px solid rgba(155, 77, 202, 0.12);
}

.mfbx-accordion3-btn {
  background: transparent;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.88);
  padding: 20px 20px;
}

.mfbx-accordion3-btn:focus {
  box-shadow: none;
}

.mfbx-accordion3-btn:not(.collapsed) {
  background: rgba(155, 77, 202, 0.06);
}

.mfbx-accordion3-body {
  padding: 20px 20px 22px 20px;
  color: rgba(15, 23, 42, 0.72);
  font-weight: 650;
  line-height: 1.65;
}

.mfbx-success-carousel {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  border-radius: 22px;
  padding: 6px;
}

.mfbx-success-carousel .carousel-inner {
  overflow: hidden;
  border-radius: 18px;
}

.mfbx-success-carousel .mfbx-carousel-indicators {
  margin-bottom: 0;
  margin-top: 14px;
  position: static;
}

.mfbx-success-carousel .mfbx-carousel-prev,
.mfbx-success-carousel .mfbx-carousel-next {
  width: 54px;
}

.mfbx-success-carousel .mfbx-carousel-prev .carousel-control-prev-icon,
.mfbx-success-carousel .mfbx-carousel-next .carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.82);
}

.mfbx-success-carousel .mfbx-carousel-indicators,
.mfbx-success-carousel .mfbx-carousel-prev,
.mfbx-success-carousel .mfbx-carousel-next {
  display: none !important;
}

.mfbx-stat-card {
  border-radius: 18px;
  padding: 16px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.06);
  text-align: center;
}

.mfbx-stat-value {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--primary-purple), var(--accent-orange), var(--star-yellow));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mfbx-stat-label {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.65);
  font-size: 13px;
}

.mfbx-landing .bg-white {
  background-color: rgba(255,255,255,0.72) !important;
  backdrop-filter: blur(10px);
}

.mfbx-landing .bg-light {
  background-color: rgba(248,250,252,0.62) !important;
  backdrop-filter: blur(10px);
}

.mfbx-section {
  position: relative;
  overflow: hidden;
}

.mfbx-section > .container {
  position: relative;
  z-index: 2;
}

.mfbx-parallax-banner {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 76px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.mfbx-parallax-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(155, 77, 202, 0.55);
}

.mfbx-landing .mfbx-parallax-banner-overlay {
  background: linear-gradient(135deg, rgba(104, 38, 151, 0.68), rgba(237, 72, 139, 0.55));
}

.mfbx-parallax-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.mfbx-parallax-banner-title {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mfbx-parallax-banner-subtitle {
  margin: 0;
  opacity: 0.92;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .mfbx-parallax-banner {
    background-attachment: scroll;
  }
}

.mfbx-success-grid {
  align-items: stretch;
}

.mfbx-success-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(155, 77, 202, 0.14);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.08);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.mfbx-success-quote {
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.8em;
}

.mfbx-success-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.mfbx-success-nav-btn {
  border: 1px solid rgba(155, 77, 202, 0.28);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(15, 23, 42, 0.86);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.mfbx-success-nav-btn:hover {
  border-color: rgba(155, 77, 202, 0.52);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.mfbx-success-nav-btn:active {
  transform: translateY(1px);
}

.mfbx-pay {
  position: relative;
}

.mfbx-pay-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  margin: 0;
}

.mfbx-pay-subtitle {
  margin-top: 6px;
  color: rgba(15, 23, 42, 0.7);
}

.mfbx-mp-badge {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(155, 77, 202, 0.18);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 45px rgba(2, 8, 23, 0.08);
  backdrop-filter: blur(12px);
}

.mfbx-mp-logo {
  display: inline-flex;
  line-height: 0;
}

.mfbx-mp-text {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.78);
}

.mfbx-pay-summary {
  border-radius: 22px;
}

.mfbx-pay-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid rgba(155, 77, 202, 0.12);
}

.mfbx-pay-total-value {
  font-weight: 950;
  font-size: 24px;
  color: rgba(15, 23, 42, 0.88);
}

.mfbx-pay-footnote {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
}

@media (max-width: 575.98px) {
  .mfbx-pay-total-value {
    font-size: 22px;
  }
  .mfbx-mp-badge {
    width: 100%;
    justify-content: center;
  }
}

.mfbx-success-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mfbx-success-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(255, 126, 95, 0.18);
  color: rgba(255, 126, 95, 0.95);
  border: 1px solid rgba(155, 77, 202, 0.14);
}

.mfbx-success-avatar-alt {
  background: rgba(155, 77, 202, 0.16);
  color: rgba(155, 77, 202, 0.95);
}

.mfbx-success-name {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.88);
}

.mfbx-success-quote {
  color: rgba(15, 23, 42, 0.72);
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
}

.mfbx-success-stars {
  color: var(--star-yellow);
  letter-spacing: 2px;
  font-size: 12px;
}

.mfbx-success-counter-card {
  height: 100%;
  border-radius: 26px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, rgba(155, 77, 202, 1) 0%, rgba(255, 126, 95, 1) 100%);
  box-shadow: 0 25px 50px -12px rgba(155, 77, 202, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mfbx-success-counter-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px -18px rgba(155, 77, 202, 0.38);
}

.mfbx-success-counter-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
}

.mfbx-success-counter-value {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.mfbx-success-counter-label {
  font-weight: 800;
  opacity: 0.95;
  line-height: 1.25;
  margin-bottom: 16px;
}

.mfbx-success-counter-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mfbx-bubble-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.25);
  margin-left: -10px;
}

.mfbx-bubble-avatar:first-child {
  margin-left: 0;
}

.mfbx-bubble-avatar-plus {
  background: rgba(155, 77, 202, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.mfbx-landing .mfbx-section-a {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 253, 245, 0.82) 100%);
}

.mfbx-landing .mfbx-section-b {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 253, 245, 0.86) 100%);
}

.mfbx-landing .mfbx-section-c {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 253, 245, 0.84) 100%);
}

.mfbx-landing .mfbx-section-d {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 253, 245, 0.84) 100%);
}

.mfbx-landing .mfbx-section-e {
  background: linear-gradient(180deg, rgba(155, 77, 202, 0.10) 0%, rgba(255, 255, 255, 0.78) 100%);
}

.mfbx-landing .mfbx-section-f {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 253, 245, 0.86) 100%);
}

.mfbx-landing .mfbx-hero .mfbx-layer-art {
  display: none;
}

.mfbx-landing .mfbx-section-a,
.mfbx-landing .mfbx-section-c,
.mfbx-landing .mfbx-section-d,
.mfbx-landing .mfbx-section-f {
  background: #fff;
}

.mfbx-landing .mfbx-section-a .mfbx-parallax-layer,
.mfbx-landing .mfbx-section-c .mfbx-parallax-layer,
.mfbx-landing .mfbx-section-d .mfbx-parallax-layer,
.mfbx-landing .mfbx-section-f .mfbx-parallax-layer {
  display: none;
}

.mfbx-navbar {
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.mfbx-navbar.mfbx-navbar-hidden {
  transform: translateY(-100%);
  opacity: 0.01;
  pointer-events: none;
}

.mfb2-nav-link {
  position: relative;
}

.mfb2-nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(155, 77, 202, 0.0), rgba(255, 126, 95, 0.75), rgba(155, 77, 202, 0.0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  opacity: 0.9;
}

.mfb2-nav-link:hover::after {
  transform: scaleX(1);
}

.mfbx-parallax {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.mfbx-parallax-layer {
  position: absolute;
  inset: -12% -8%;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

.mfbx-hero {
  background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.55) 100%);
}

.mfbx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(155, 77, 202, 0.22) 0%, rgba(155, 77, 202, 0) 55%),
              radial-gradient(900px 540px at 88% 24%, rgba(255, 126, 95, 0.18) 0%, rgba(255, 126, 95, 0) 58%),
              radial-gradient(900px 520px at 42% 80%, rgba(255, 235, 59, 0.12) 0%, rgba(255, 235, 59, 0) 60%);
  z-index: 0;
}

.mfbx-hero-content {
  position: relative;
  z-index: 2;
}

.mfbx-glass {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.mfbx-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.08);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mfbx-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(155, 77, 202, 0.25);
}

.mfbx-input.form-control {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.72);
  padding: 12px 14px;
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mfbx-input.form-control:focus {
  border-color: rgba(155, 77, 202, 0.55);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 0 0.22rem rgba(155, 77, 202, 0.14), 0 0 0 0.12rem rgba(255, 126, 95, 0.12);
}

.mfbx-btn-primary {
  border-radius: 18px;
}

.mfbx-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  padding: 12px 14px;
  font-weight: 800;
  border-color: rgba(15, 23, 42, 0.14) !important;
}

.mfbx-social-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mfbx-search .mfbx-btn {
  border-radius: 18px;
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.72);
}

.mfbx-search .mfbx-btn:hover {
  background: rgba(255,255,255,0.92);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--mfbx-delay, 0ms);
}

.mfbx-reveal-left {
  transform: translateX(-18px);
}

.mfbx-reveal-right {
  transform: translateX(18px);
}

.mfbx-reveal-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mfbx-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 3650;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.14);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 160ms ease, background 160ms ease;
}

.mfbx-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.mfbx-back-to-top:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.mfb2-body .card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mfb2-body .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(155, 77, 202, 0.20);
}

.mfb2-body .card .card-body {
  padding: 20px;
}

.mfb2-body .form-control {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255,255,255,0.72);
  padding: 12px 14px;
}

.mfb2-body .form-control:focus {
  border-color: rgba(155, 77, 202, 0.55);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 0 0.22rem rgba(155, 77, 202, 0.14), 0 0 0 0.12rem rgba(255, 126, 95, 0.12);
}

.mfb2-body .btn-primary {
  border-radius: 999px;
}

.mfb2-body .alert {
  border-radius: 18px;
  border: 1px solid rgba(155, 77, 202, 0.14);
}

.mfb2-body .alert-success {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}

.mfb2-body .alert-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #7f1d1d;
}

.mfb2-body .table {
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(155, 77, 202, 0.14);
  margin-bottom: 0;
}

.mfb2-body .table thead th {
  color: rgba(74, 74, 74, 0.92);
  font-weight: 900;
  background: rgba(155, 77, 202, 0.06);
  border-bottom-color: rgba(155, 77, 202, 0.14);
}

.mfb2-body .table tbody td {
  border-top-color: rgba(15, 23, 42, 0.08);
}

.mfb2-body .table tbody tr:hover > * {
  background: rgba(155, 77, 202, 0.06);
}

.mfbx-cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 5000;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(155, 77, 202, 0.22);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.14);
  backdrop-filter: blur(12px);
}

.mfbx-cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.mfbx-cookie-text {
  min-width: 220px;
  flex: 1;
  color: rgba(15, 23, 42, 0.85);
  font-weight: 700;
}

.mfbx-cookie-text a {
  color: var(--primary-purple);
  font-weight: 950;
  text-decoration: none;
}

.mfbx-cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mfbx-cookie-btn {
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
  border: 0;
}

.mfbx-cookie-btn-ghost {
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(15, 23, 42, 0.82);
}

.mfbx-cookie-btn-primary {
  background: var(--primary-purple);
  color: #fff;
  box-shadow: 0 14px 32px rgba(155, 77, 202, 0.25);
}
