.elementor-69 .elementor-element.elementor-element-152048d{--display:flex;--margin-top:31px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-69 .elementor-element.elementor-element-152048d:not(.elementor-motion-effects-element-type-background), .elementor-69 .elementor-element.elementor-element-152048d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F3EFFF;}.elementor-69 .elementor-element.elementor-element-5afc827 > .elementor-widget-container{margin:-21px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-880871e */.toolkit-intro {
  background-color: #f9fafb;
  padding: 60px 20px 48px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.toolkit-container {
  max-width: 960px;
  margin: 0 auto;
}

.toolkit-intro h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.3;
}

.toolkit-intro p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 14px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a41abfb *//* ===========================
   GLOBAL CONTAINER STYLES
=========================== */
.app-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.app-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  background-color: #f0f0f0;
  color: #1a1a1a;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.app-tab:hover {
  background-color: #dcdcdc;
  border-color: #a3a3a3;
}

.app-tab.active {
  background-color: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
}

/* ===========================
   TAB PANELS
=========================== */
.app-tabpanel {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.app-tabpanel.active {
  display: flex;
}

/* ===========================
   PACKAGE ITEM BUTTONS
=========================== */
.app-packages__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.app-packages__item:hover {
  border-color: #3b82f6;
  background-color: #f0f9ff;
}

.app-packages__item.selected {
  border-color: #3b82f6;
  background-color: #e0f2fe; /* Light blue */
  box-shadow: 0 0 0 2px #bfdbfe; /* Optional glow */
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

/* ===========================
   TEXTS & BADGES
=========================== */
.app-packages__item .count {
  flex: 1;
  font-weight: 600;
}

.app-packages__item .text {
  font-size: 13px;
  color: #4b5563;
  margin-left: auto;
}

.app-packages__item .badge {
  font-size: 12px;
  padding: 4px 10px;
  margin-left: 12px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
}

.badge.green {
  background-color: #d1fae5;
  color: #065f46;
}

.badge.dark {
  background-color: #dbeafe;
  color: #1e3a8a;
}

/* ===========================
   PRICE + ACTIONS
=========================== */
.app-packages__actions {
  margin-top: 36px;
  text-align: center;
}

.app-packages__price {
  margin-bottom: 12px;
}

.app-packages__price .disc {
  font-size: 26px;
  font-weight: 800;
  color: #1d4ed8;
  margin-right: 8px;
}

.app-packages__price .reg {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
}

.app-packages__savings {
  font-size: 15px;
  color: #059669;
  font-weight: 600;
  margin-top: 6px;
}

/* ===========================
   BUY NOW BUTTON
=========================== */
.app-packages__submit {
  margin-top: 16px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  background-color: #1d4ed8;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.app-packages__submit:hover {
  background-color: #1e40af;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-553a847 */.product-description {
  max-width: 880px;
  margin: 0 auto 12px auto;
  padding: 20px 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  text-align: left;
  overflow: hidden;
}

/* Text inside */
.product-description p {
  font-size: 16px;
  color: #374151;
  line-height: 1.75;
  margin: 0;
}

/* Animate from full right */
.product-description.slide-from-right.animate {
  animation: fullSlideFromRight 0.6s ease-out forwards;
}

/* Animate from full left */
.product-description.slide-from-left.animate {
  animation: fullSlideFromLeft 0.6s ease-out forwards;
}

/* Full-screen slide in from right */
@keyframes fullSlideFromRight {
  0% {
    opacity: 0;
    transform: translateX(100vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Full-screen slide in from left */
@keyframes fullSlideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5afc827 */.luxury-footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-top: 1px solid #1f2937;
  width: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 16px;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}/* End custom CSS */