.elementor-35 .elementor-element.elementor-element-6b43a4f{--display:flex;}.elementor-35 .elementor-element.elementor-element-8d8feaf{margin:-11px 0px calc(var(--kit-widget-spacing, 0px) + -11px) 0px;}/* Start custom CSS for html, class: .elementor-element-8d8feaf */@import url('https://fonts.googleapis.com/css2?family=Carter+One&family=Nunito:wght@400;500;600;700;800&display=swap');

.sp-root {
  --sp-pink: #FF60A0;
  --sp-orange: #F9AB42;
  --sp-purple: #B642C4;
  --sp-blue: #2AA6D8;
  --sp-green: #86CC4D;
  --sp-text: #1a1a1a;
  --sp-text-soft: rgba(26,26,26,0.75);
  --sp-radius: 16px;
  --sp-radius-lg: 24px;
  font-family: 'Nunito', sans-serif;
  color: var(--sp-text);
  -webkit-font-smoothing: antialiased;
}

.sp-root, .sp-root * , .sp-root *::before, .sp-root *::after {
  box-sizing: border-box;
}

.sp-root h1, .sp-root h2, .sp-root h3, .sp-root h4 {
  font-family: 'Carter One', cursive;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0;
}

.sp-root p { margin: 0; }
.sp-root img { max-width: 100%; height: auto; display: block; }
.sp-root a { text-decoration: none; color: inherit; }
.sp-root button { font-family: inherit; cursor: pointer; }

/* ---- Break out of Elementor's container padding so the
        page reaches the true edges of the viewport ---- */
.sp-full-bleed {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

/* Kill Elementor / theme padding & margin around our widget
   so there's no negative space on any side */
.elementor-widget-html .elementor-widget-container,
.elementor-widget-shortcode .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}
body { overflow-x: hidden; }

/* ---- Page background (matches original gradient) ---- */
.sp-page-bg {
  background: linear-gradient(135deg, #FF60A0 0%, #F9AB42 25%, #86CC4D 50%, #2AA6D8 75%, #B642C4 100%);
  background-attachment: fixed;
  min-height: 100vh;
  padding-bottom: 48px;
}
.sp-page-bg.sp-dark-theme {
  background: #0b0b0d;
  transition: background 0.5s ease;
}

/* ---- Glass card ---- */
.sp-glass {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--sp-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.5);
}
.sp-dark-theme .sp-glass {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.15);
}

/* ---- Container (max-width content wrapper INSIDE the
        full-bleed section) ---- */
.sp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---- Header / Nav ---- */
.sp-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-radius: 0 !important;
  margin-bottom: 16px;
}
.sp-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.sp-logo img { height: 64px; width: auto; }
.sp-nav { display: none; gap: 28px; }
.sp-nav-link {
  font-weight: 600;
  font-size: 15px;
  color: rgba(26,26,26,0.75);
  transition: color 0.15s ease;
  white-space: nowrap;
}
.sp-nav-link:hover, .sp-nav-link.sp-active { color: var(--sp-pink); }
.sp-menu-btn {
  display: flex;
  background: none;
  border: none;
  padding: 8px;
  color: var(--sp-text);
}
.sp-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.4);
}
.sp-mobile-menu.sp-open { display: flex; }
.sp-mobile-menu a {
  font-weight: 600;
  font-size: 17px;
  padding: 10px 12px;
  border-radius: 10px;
}
.sp-mobile-menu a:hover { background: rgba(255,255,255,0.5); }

@media (min-width: 768px) {
  .sp-nav { display: flex; }
  .sp-menu-btn { display: none; }
  .sp-mobile-menu { display: none !important; }
}

/* ---- Footer ---- */
.sp-footer {
  border-radius: 24px 24px 0 0;
  margin-top: 48px;
  padding: 40px 16px;
  text-align: center;
}
.sp-footer img { height: 56px; margin: 0 auto 16px; }
.sp-footer p { font-weight: 600; color: rgba(26,26,26,0.8); }

/* ---- Buttons ---- */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 17px;
  border-radius: 999px;
  height: 56px;
  padding: 0 32px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}
.sp-btn:hover { transform: translateY(-2px); }
.sp-btn-primary { background: var(--sp-pink); color: #fff; }
.sp-btn-primary:hover { background: rgba(255,96,160,0.9); }
.sp-btn-outline {
  background: rgba(255,255,255,0.5);
  border-color: var(--sp-purple);
  color: var(--sp-text);
}
.sp-btn-outline:hover { background: rgba(255,255,255,0.8); }
.sp-btn-sm { height: 40px; padding: 0 18px; font-size: 14px; border-radius: 999px; }

/* ---- Badges/tags ---- */
.sp-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  color: var(--sp-text);
}

/* ---- Utility ---- */
.sp-grid { display: grid; gap: 24px; }
.sp-flex-center { display: flex; align-items: center; justify-content: center; }
.sp-blur-circle {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
}
.sp-image-placeholder {
  background: repeating-linear-gradient(45deg, #e9e9ec, #e9e9ec 10px, #f2f2f4 10px, #f2f2f4 20px);
  color: #8a8a92;
  font-family: 'Carter One', cursive;
  text-align: center;
  padding: 12px;
  border-radius: inherit;
}
.sp-fade-up { animation: sp-fade-up 0.5s ease both; }
@keyframes sp-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */