.elementor-1142 .elementor-element.elementor-element-7808e4f{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-de081f3 *//*************************************************
 * PAGE WRAPPER / GLOBAL
 * - Background, base typography
 *************************************************/
.tsk-pricing-page {
  background: linear-gradient(#f4ede6, #f3ebe3);
  padding: 60px 20px 80px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
}

/*************************************************
 * HERO / PAGE HEADER
 * - Main title, credibility line, bubble subtitle, note
 *************************************************/
.tsk-pricing-hero {
  text-align: center;
  padding-top: 2rem;            /* reduced top space */
  margin-bottom: 1.5rem;        /* tighter gap to cards */
}

.tsk-pricing-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.tsk-pricing-hero__title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  white-space: nowrap;          /* keep on one line */
}

/* Credibility line under hero title */
.tsk-pricing-hero__credline {
  font-size: 1.15rem;
  color: #4a4a4a;
  margin: 0.4rem 0 1rem 0;      /* balanced spacing */
}

/* Green pill / bubble subtitle */
.tsk-pricing-hero__subtitle {
  display: inline-block;
  background-color: #0fbf7f;
  color: #ffffff;
  padding: 0.5rem 2.1rem;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(15, 191, 127, 0.25);
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

/* One-line support note under the bubble */
.tsk-pricing-hero__note {
  font-size: 1.05rem;
  color: #6b6b6b;
  line-height: 1.45;
  font-weight: 400;
}

/*************************************************
 * PRICING GRID LAYOUT
 *************************************************/
.tsk-pricing__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/*************************************************
 * PRODUCT CARD BASE
 * - Card container, hover effect
 *************************************************/
.tsk-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tsk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}

/* Remove outlines without killing the card shadow */
.tsk-card:focus,
.tsk-card:active,
.tsk-card:focus-visible {
  outline: none;
}

/*************************************************
 * PRODUCT CARD IMAGE
 *************************************************/
.tsk-card__image img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/*************************************************
 * PRODUCT CARD TITLE & TAGLINE
 *************************************************/
.tsk-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 16px;
}

.tsk-card__tag {
  color: #374151;
  margin-top: 6px;
  margin-bottom: 14px;
  font-size: 1rem;
}

/*************************************************
 * PRODUCT CARD PRICE
 *************************************************/
.tsk-card__price {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 14px 0;
}

.tsk-card__price span {
  font-size: 0.9rem;
  color: #6b7280;
}

/*************************************************
 * PRIMARY CTA BUTTON ON CARDS
 *************************************************/
.tsk-card__cta {
  display: block;
  background: #11c5a5;
  color: #ffffff;
  padding: 14px;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 14px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 12px 28px rgba(8, 200, 160, 0.32);
}

.tsk-card__cta:hover {
  background: #0ea58d;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(8, 200, 160, 0.42);
}

/*************************************************
 * ACCORDION TOGGLE BUTTON (More Details)
 *************************************************/
.tsk-card__toggle {
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 0.95rem;
  color: #0ea58d;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

/* Hover color for the More Details link */
.tsk-card__toggle:hover {
  color: #0c8c78;
}

/* Strip native button styles inside cards */
.tsk-card button,
.tsk-card__toggle {
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* Prevent browser focus backgrounds on buttons */
.tsk-card button:active,
.tsk-card button:focus,
.tsk-card button:focus-visible {
  background: none;
  outline: none;
  box-shadow: none;
}

/*************************************************
 * ACCORDION CONTENT (Details panel)
 *************************************************/
.accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion.open {
  max-height: 500px;
}

.accordion ul {
  padding-left: 20px;
  margin-top: 10px;
}

.accordion li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #4b5563;
}

/*************************************************
 * OPTIONAL MICRO-BENEFIT BULLETS (if used under titles)
 *************************************************/
.tsk-card-bullets {
  margin: 0.25rem 0 0.75rem 0;
  padding: 0;
  list-style: none;
  color: #333333;
}

.tsk-card-bullets li {
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

/*************************************************
 * SECURE CHECKOUT LINE (per card)
 *************************************************/
.tsk-secure,
.tsk-pricing-card__fine-print {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #6b7280;
  opacity: 0.9;
}

.lock-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  opacity: 0.9;
}

/*************************************************
 * GLOBAL SECURE LINE (if used below grid)
 *************************************************/
.tsk-secure-global {
  margin-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  color: #4b5563;
  opacity: 0.9;
}

/*************************************************
 * BENEFITS STRIP (white card under pricing grid)
 *************************************************/
.tsk-pricing-benefits {
  margin-top: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tsk-pricing-benefits__inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 22px 24px 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  text-align: center;
}

/* Benefits section heading */
.tsk-pricing-benefits__inner > h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/*************************************************
 * BENEFIT BUBBLES (green pills)
 *************************************************/
.tsk-benefit-bubbles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 1.5rem;
}

.tsk-benefit-bubble {
  background: #0fbf7f;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(15, 191, 127, 0.25);
}

/*************************************************
 * FINISH THIS WEEKEND™ PROMISE BADGE
 *************************************************/
.tsk-promise-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background-color: #e6f8f1;     /* soft green tint */
  margin-top: 1.6rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: #1f1f1f;
  text-align: center;
}

/* Guarantee text inside badge */
.tsk-promise-badge__text {
  display: block;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

/* Shield icon in badge */
.tsk-promise-badge__svg {
  width: 34px;
  height: 34px;
  stroke: #0fbf7f;
  stroke-width: 2.2;
  margin-right: 0.6rem;
  margin-top: -2px;  /* optical vertical alignment */
}

/*************************************************
 * RESPONSIVE BREAKPOINTS
 *************************************************/
@media (max-width: 1024px) {
  /* 2-column grid on tablets */
  .tsk-pricing__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  /* Tighter padding on mobile */
  .tsk-pricing-page {
    padding: 40px 16px 60px;
  }

  /* Single-column grid on mobile */
  .tsk-pricing__inner {
    grid-template-columns: 1fr;
  }

  .tsk-card {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Allow hero title to wrap naturally on very small screens if needed */
  .tsk-pricing-hero__title {
    white-space: normal;
  }

  /* Let the bubble adapt a bit better on narrow screens */
  .tsk-pricing-hero__subtitle {
    white-space: normal;
    line-height: 1.5;
  }
}
/* Remove red hover/focus outline from product cards (permanent fix) */
.tsk-card,
.tsk-card:hover,
.tsk-card:focus,
.tsk-card:active,
.tsk-card:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12) !important; /* normal resting shadow */
}

/* Keep the stronger hover shadow without outline */
.tsk-card:hover {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16) !important;
}
/*************************************************
 * HOW IT WORKS
 *************************************************/
.tsk-howitworks__inner {
  max-width: 900px;
  margin: 50px auto 40px;
  text-align: center;
}

.tsk-howitworks__inner h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.tsk-howitworks__steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: nowrap;   /* keep them in one row by default */
}


.tsk-howitworks__step {
  max-width: 260px;
  text-align: center;
}

.tsk-howitworks__number {
  display: inline-block;
  background: #0fbf7f;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.tsk-howitworks__text {
  font-size: 0.98rem;
  color: #374151;
}


/*************************************************
 * MINI FAQ
 *************************************************/
.tsk-minifaq__inner {
  max-width: 880px;
  margin: 40px auto;
}

.tsk-minifaq__inner h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.tsk-minifaq__q {
  margin-bottom: 1rem;
}

.tsk-minifaq__q .q {
  font-weight: 600;
  color: #0ea58d;
}

.tsk-minifaq__q .a {
  color: #374151;
  margin-top: 4px;
}


/*************************************************
 * COMPARISON ROW
 *************************************************/
.tsk-compare__inner {
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
}

.tsk-compare__inner h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.tsk-compare__row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.compare-box {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  width: 240px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.compare-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.compare-box .price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.compare-box .desc {
  font-size: 0.9rem;
  color: #374151;
}

.highlight {
  background: #0fbf7f;
  color: white;
}

.highlight .desc {
  color: white;
}


/*************************************************
 * TESTIMONIAL
 *************************************************/
.tsk-testimonial__inner {
  max-width: 720px;
  margin: 50px auto;
  text-align: center;
  font-style: italic;
  color: #111827;
}

.tsk-testimonial__inner .name {
  margin-top: 0.4rem;
  font-style: normal;
  font-weight: 600;
}


/*************************************************
 * FINAL CTA
 *************************************************/
.tsk-finalcta__inner {
  text-align: center;
  margin: 50px auto 20px;
}

.tsk-finalcta__inner h3 {
  font-size: 1.6rem;
  margin-bottom: .8rem;
}

.tsk-finalcta__button {
  background: #0fbf7f;
  padding: 14px 28px;
  border-radius: 999px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 200, 160, 0.32);
}
/*************************************************
 * 1. Increase spacing between FAQ answers
 *************************************************/
.tsk-minifaq__q {
    margin-bottom: 1.4rem !important;
}
.tsk-minifaq__q .a {
    line-height: 1.55 !important;
}

/*************************************************
 * 2. Add subtle divider between FAQ items
 *************************************************/
.tsk-minifaq__q:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 1.2rem;
}

/*************************************************
 * 3. Add soft shadow behind comparison row
 *************************************************/
.tsk-compare__row {
    padding: 1.2rem 0;
    background: rgba(255,255,255,0.65);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

/*************************************************
 * 4. More breathing room above FAQ heading
 *************************************************/
.tsk-minifaq__inner h3 {
    margin-top: 2.2rem !important;
}

/*************************************************
 * 5. Slightly bolder FAQ questions
 *************************************************/
.tsk-minifaq__q .q {
    font-weight: 700 !important;
    color: #0ea58d !important;
}

/*************************************************
 * 6. Darken testimonial text slightly
 *************************************************/
.tsk-testimonial__inner .quote {
    color: #1f2937 !important; /* slightly darker gray-blue */
    font-size: 1.05rem;
    line-height: 1.6;
}

/*************************************************
 * 7. Match final CTA button color to main CTA
 *************************************************/
.tsk-finalcta__button {
    background: #11c5a5 !important;   /* exact main CTA green */
    box-shadow: 0 12px 28px rgba(8, 200, 160, 0.32) !important;
    transition: transform 0.2s ease;
}
.tsk-finalcta__button:hover {
    transform: translateY(-2px);
    background: #0ea58d !important;
}
/* Add space between the "Ready to Begin Your Trust?" heading and the button */
.tsk-finalcta__inner h3 {
    margin-bottom: 3.5rem !important;
}
/* Add space above the How It Works section */
.tsk-howitworks {
    margin-top: 1.5rem !important;
    padding-top: 1rem !important;
}

/* Make the How It Works heading larger and bolder */
.tsk-howitworks__inner h3 {
    font-size: 2rem !important;        /* was ~1.6rem */
    font-weight: 800 !important;
    margin-bottom: 1.8rem !important;  /* more breathing room */
}

/* Increase spacing between steps */
.tsk-howitworks__steps {
    gap: 2.5rem !important;            /* wider spacing between step groups */
}

/* Make step numbers larger */
.tsk-howitworks__number {
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.6rem !important;
}

/* Make step text larger and more readable */
.tsk-howitworks__text {
    font-size: 1.1rem !important;
    line-height: 1.55 !important;
    color: #1f2937 !important;         /* slightly darker for readability */
    max-width: 260px;
    margin: 0 auto;
}
/* Green step boxes (match "Finish This Weekend" tint) */
.tsk-howitworks__step-box {
    background: #e6f8f1;              /* same soft mint as promise badge */
    padding: 1.5rem 1rem;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Space between boxes */
.tsk-howitworks__steps {
    gap: 2rem !important;
}

/* Make sure step content is centered inside the box */
.tsk-howitworks__step {
    text-align: center;/* End custom CSS */