.pricing-tabs {
        margin-bottom: 2rem;
    }

    .pricing-tab-btn {
        background: linear-gradient(135deg, #E0E7FF 0%, #F3F4F6 100%);
        color: #6B7280;
        border: 1px solid #D1D5DB;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 500;
        font-size: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 80px;
        text-decoration: none;
    }

    .pricing-tab-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(106, 73, 242, 0.1), transparent);
        transition: left 0.5s;
    }

    .pricing-tab-btn:hover::before {
        left: 100%;
    }

    .pricing-tab-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(106, 73, 242, 0.15);
        color: #6A49F2;
        border-color: #6A49F2;
        text-decoration: none;
    }

    .pricing-tab-btn.active {
        background: linear-gradient(135deg, #6A49F2 0%, #8B5CF6 100%);
        color: white;
        border-color: #6A49F2;
        box-shadow: 0 4px 12px rgba(106, 73, 242, 0.25);
        transform: translateY(-1px);
    }

    .pricing-tab-btn i {
        font-size: 12px;
    }

     .ppu-btn {
         background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
         color: #f8fafc;
         border: 2px solid #475569;
         font-weight: 700;
         font-size: 13px;
         position: relative;
         overflow: hidden;
         box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
         text-transform: uppercase;
         letter-spacing: 0.5px;
         min-width: 120px;
         padding: 10px 20px;
     }

    .ppu-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .ppu-btn:hover::before {
        left: 100%;
    }

     .ppu-btn:hover {
         background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
         color: #ffffff;
         border-color: #64748b;
         box-shadow: 0 8px 25px rgba(30, 41, 59, 0.4);
         transform: translateY(-2px);
     }

     .ppu-btn::after {
         content: '⚡';
         position: absolute;
         top: -3px;
         right: -3px;
         font-size: 8px;
         background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
         color: #1e293b;
         border-radius: 50%;
         width: 18px;
         height: 18px;
         display: flex;
         align-items: center;
         justify-content: center;
         font-weight: bold;
         box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
         border: 2px solid #1e293b;
     }

     .ppu-btn i {
         margin-right: 6px;
         font-size: 11px;
     }

     /* Professional Addon Buttons Styling */
     .benifits .badge {
         background: linear-gradient(135deg, #6A49F2 0%, #8B5CF6 100%) !important;
         color: white !important;
         border: none !important;
         border-radius: 6px !important;
         padding: 4px 10px !important;
         font-size: 10px !important;
         font-weight: 600 !important;
         text-decoration: none !important;
         display: inline-flex !important;
         align-items: center !important;
         gap: 4px !important;
         transition: all 0.3s ease !important;
         box-shadow: 0 1px 4px rgba(106, 73, 242, 0.2) !important;
         position: relative !important;
         overflow: hidden !important;
     }

     .benifits .badge::before {
         content: '';
         position: absolute;
         top: 0;
         left: -100%;
         width: 100%;
         height: 100%;
         background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
         transition: left 0.5s ease;
     }

     .benifits .badge:hover::before {
         left: 100%;
     }

     .benifits .badge:hover {
         background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%) !important;
         transform: translateY(-1px) !important;
         box-shadow: 0 2px 8px rgba(106, 73, 242, 0.3) !important;
         text-decoration: none !important;
     }

     .benifits .badge i {
         font-size: 9px !important;
     }

     /* Specific styling for different pricing plan contexts */
     .benifits li .badge.bg-primary {
         background: linear-gradient(135deg, #6A49F2 0%, #8B5CF6 100%) !important;
     }

     .benifits li .badge.bg-warning {
         background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
     }

     .benifits li .badge.bg-success {
         background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
     }

    .social-icon-black
    {
        color:#000000;
    }

    .social-icon-white
    {
        color:#ffffff;
    }

    .white_btn_custom
    {
        color: #6a49f2 !important;
    }
    .white_btn_custom:hover
    {
        color: #ffffff !important;
    }

     /* Responsive addon buttons */
     @media (max-width: 768px) {
         .benifits .badge {
             padding: 3px 8px !important;
             font-size: 9px !important;
         }
     }

     @media (max-width: 576px) {
         .benifits .badge {
             padding: 2px 6px !important;
             font-size: 8px !important;
         }
     }


    /* Responsive Design */
    @media (max-width: 768px) {
        .pricing-tab-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-width: 70px;
        }

        .pricing-tabs .d-flex {
        gap: 8px !important;
        flex-wrap: wrap;
        justify-content: center;
        }

        .pricing-tab-btn {
        flex: 0 0 calc(33.333% - 6px);
        margin-bottom: 8px;
        }
    }

    @media (max-width: 576px) {
        .pricing-tab-btn {
        padding: 4px 8px;
        font-size: 10px;
        min-width: 60px;
        flex: 0 0 calc(50% - 4px);
        }

        .pricing-tabs .d-flex {
        gap: 4px !important;
        }
    }

    @media (max-width: 400px) {
        .pricing-tab-btn {
        padding: 3px 6px;
        font-size: 9px;
        min-width: 50px;
        flex: 0 0 calc(50% - 2px);
        }

        .pricing-tabs .d-flex {
        gap: 2px !important;
        }

        .ppu-btn {
        font-size: 11px;
        padding: 8px 16px;
        min-width: 100px;
        }

        .ppu-btn::after {
        width: 14px;
        height: 14px;
        font-size: 7px;
        }
    }

/* ========== Professional Pricing Block Design ========== */
.pricing-block-container {
  min-height: 420px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 10px 25px -5px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pricing-block-container:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 8px 16px -8px rgba(106, 73, 242, 0.12) !important;
  transform: translateY(-4px) !important;
}

.pricing-block-container.highlited_block {
  /*background: linear-gradient(145deg, #5B21B6 0%, #6D28D9 35%, #7C3AED 70%, #8B5CF6 100%) !important;*/
  border: none !important;
  box-shadow: 0 25px 50px -12px rgba(106, 73, 242, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset !important;
}

.pricing-block-container.highlited_block:hover {
  box-shadow: 0 32px 64px -12px rgba(106, 73, 242, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.12) inset !important;
  transform: translateY(-6px) scale(1.02) !important;
}

.pricing-block-container.bg-white {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
}

.badge-small {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.pkg-name-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

.price-display-large {
  font-size: 26px !important;
  font-weight: 600 !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.5px !important;
}

.discount-badge {
  font-size: 12px !important;
  font-weight: 600 !important;
}

.discount-terms-text {
  font-size: 11px !important;
  min-height: 20px !important;
  line-height: 1.4 !important;
}

.message-credit-box {
  border-radius: 10px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease !important;
}

.highlited_block .message-credit-box {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.message-credit-label {
  font-size: 13px !important;
  font-weight: 600 !important;
}

.message-credit-value {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.pricing_section .benifits li {
  padding: 6px 10px 6px 0 !important;
  border-radius: 6px !important;
  transition: all 0.25s ease !important;
}

.pricing_section .nk-pricing:not(.active) .benifits li:hover {
  background: rgba(106, 73, 242, 0.06) !important;
}

.pricing_section .nk-pricing.active .benifits li:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.feature-icon {
  font-size: 15px !important;
}

.feature-text {
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.compare-unlimited {
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
}

.pricing-unlimited {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 0;
  vertical-align: middle;
}

.pricing-unlimited-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  color: inherit;
}

.pricing_section .pricing-plan-metric-value .pricing-unlimited-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.pricing_section .nk-pricing.active .pricing-plan-metric-value .pricing-unlimited,
.pricing_section .nk-pricing.active .pricing-plan-metric-value .pricing-unlimited-icon {
  color: #ffffff !important;
}

.toggle-btn-small {
  font-size: 11px !important;
  padding: 6px 14px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}

.select-package-btn {
  font-weight: 600 !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
}

.select-package-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(106, 73, 242, 0.25) !important;
}

.benifits {
  list-style: none !important;
  /* padding-left: 12px !important; */
}

/* Agency purchase button - ensure visible text */
/* #package_link_agency,
.btn-agency-purchase {
  background: linear-gradient(135deg, #6A49F2 0%, #8B5CF6 100%) !important;
  color: #ffffff !important;
  border: none !important;
}

#package_link_agency:hover,
.btn-agency-purchase:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%) !important;
} */

/* See More button at bottom */
.overline-title {
    font-size: 22px !important;
    color: #2b5cfd !important;
}
.toggle-arrow-basic1, .toggle-arrow-basic2, .toggle-arrow-basic3,
.toggle-arrow-premium, .toggle-arrow-agency {
  margin-top: 0.5rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
}

.highlited_block .toggle-arrow-premium {
  border-top-color: rgba(255,255,255,0.2) !important;
}

.pricing_block {
  transition: all 0.4s ease !important;
  display: flex !important;
  flex-direction: column !important;
}

.form-range {
  height: 8px !important;
  border-radius: 10px !important;
}

/* Range needs Bootstrap/Nio height (global .form-range 8px is too short for thumbs) */
.pricing_section .pricing-tier-range-wrap .form-range {
  height: 1.5rem !important;
  min-height: 1.5rem !important;
}

.message-credit-range-label {
  font-size: 10px !important;
}

.pricing_section .row {
  align-items: stretch !important;
  row-gap: 1.5rem !important;
}

.pricing_section [class*="col-"] {
  display: flex !important;
}

.pricing_section [class*="col-"] > div {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Section rhythm — do not override pt-120 / pt-lg-160 on the section (clears fixed header). */
.pricing_section {
  padding-bottom: 3rem !important;
}

/* Validity / plan switcher — nk-tag theme (active + PPU) */
.pricing_section .pricing-currency-switch-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  /* Compact badge row; keep subtitle→title gap (was on .nk-section-subtitle). */
  min-height: 1.5rem;
  margin-bottom: 12px;
}
.pricing_section .pricing-currency-switch-wrap .nk-section-subtitle {
  margin-bottom: 0;
}
.pricing_section .pricing-currency-switch {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff !important;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  border: 1px solid #c2410c !important;
  box-shadow: 0 1px 2px rgba(194, 65, 12, 0.25);
  width: 3.75rem;
  height: 1.5rem;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 0.5rem;
}
.pricing_section .pricing-currency-switch:hover,
.pricing_section .pricing-currency-switch:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  border-color: #9a3412 !important;
}
.pricing_section .nk-filter-wrap .nk-tag {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.pricing_section .nk-filter-wrap .nk-tag-item {
  display: inline-flex;
  align-items: center;
}
.pricing_section .nk-filter-wrap .nk-tag-item.active {
  background-color: #2b5cfd;
  color: #fff;
  border-color: #2b5cfd;
}
.pricing_section .nk-filter-wrap .nk-tag-item.nk-tag-item--ppu {
  background-color: #0a1425;
  border-color: #0a1425;
  color: #fff;
}
.pricing_section .nk-filter-wrap .nk-tag-item.nk-tag-item--ppu:hover {
  background-color: #1e293b;
  border-color: #1e293b;
  color: #fff;
}

/* Icon area spacing */
.pricing_block .icon {
  padding-top: 0.25rem !important;
}

/* Social icons styling */
.pricing_block .pkg_name h2 i {
  transition: transform 0.2s ease !important;
}

.pricing_block .pkg_name h2 i:hover {
  transform: scale(1.15) !important;
}

/* See More / See Less pricing blocks */
.pricing-see-more-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.75rem !important;
}

.highlited_block .pricing-see-more-row {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-see-more-btn {
  font-size: 12px !important;
  padding: 4px 14px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
}

/* Nested list: align with first li items (collapse wrapper li has 16px padding) */
.pricing-more-list {
  padding-left: 0 !important;
  margin-left: -16px !important;
}

/* Keep See More button at bottom of list */
.pricing_block .benifits {
  display: flex;
  flex-direction: column;
}

.pricing-see-more-row {
  margin-top: auto !important;
}

/* Pricing cards — equal title/badge/intro so metrics boxes share one baseline */
.pricing_section .pricing-plans-track {
  align-items: stretch;
}

.pricing_section .pricing-plan-card-col .nk-pricing {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing_section .pricing-plan-card-col .nk-pricing-head {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.pricing_section .nk-pricing-s3 .nk-pricing-title-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.65rem;
  min-height: 2rem;
  margin-bottom: 0;
}

.pricing_section .nk-pricing-s3 .nk-pricing-title-group .title {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
}

.pricing_section .nk-pricing-s3 .nk-pricing-title-group .badge {
  flex: 0 0 auto;
  white-space: nowrap;
  flex-wrap: nowrap !important;
}

.pricing_section .pricing-plan-badge-slot {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 1.75rem;
  min-width: 5.25rem;
}

.pricing_section .pricing-plan-badge-slot .badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-sizing: border-box;
  min-height: 1.75rem;
  height: 1.75rem;
  padding: 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border-width: 1px;
  border-style: solid;
}

.pricing_section .pricing-plan-badge-slot .badge .nk-fcp-icon {
  width: 0.85rem;
  height: 0.85rem;
  margin-inline-end: 0 !important;
}

.pricing_section .nk-pricing.active .pricing-plan-badge-slot .badge {
  border-color: transparent;
}

.pricing_section .nk-pricing-s3 .nk-pricing-head .text-2 {
  margin-top: 0.25rem;
}

/* Save + % OFF beside Premium / Reseller plan label (above tier slider) */
.pricing_section .pricing-plan-discount-inline {
  flex: 0 1 auto;
  text-align: right;
  max-width: 100%;
}

/* Fixed 2-line intro so price boxes start on the same row */
.pricing_section .pricing-plan-card-intro {
  font-size: 0.8125rem;
  line-height: 1.4;
  min-height: 2.5rem;
  margin: 0.65rem 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pricing_section .pricing-plan-metrics-box {
  margin-top: 0;
}

/* Reserve Premium slider space on Basic so FREE metrics line up (tuned visually). */
.pricing_section #basic_plan_block .pricing-tier-slider-slot {
  flex: 0 0 auto;
  width: 100%;
  min-height: 110px;
  box-sizing: border-box;
}
#premium_select_block .pricing-tier-slider-slot {
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
}
#premium_select_block .pricing-tier-slider-slot--active {
  padding-top: 1.5rem;
}
.pricing_section .nk-pricing-s3 > .nk-pricing-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Discount terms + purchase — single footer row (mt-auto in markup) */
.pricing_section .pricing-plan-card-footer {
  flex-shrink: 0;
}

.pricing_section .pricing-plan-discount-terms {
  min-height: 1.25rem;
}


/* --- Premium (dark card): white thumb, light track --- */
#premium_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-runnable-track {
  height: 0.5rem !important;
  background-color: rgba(255, 255, 255, 0.28) !important;
  border-radius: 1rem !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range::-moz-range-track {
  height: 0.5rem !important;
  background-color: rgba(255, 255, 255, 0.28) !important;
  border-radius: 1rem !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range {
  background: transparent !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-thumb {
  width: 1rem !important;
  height: 1rem !important;
  margin-top: -0.25rem !important;
  appearance: none !important;
  background: #fff !important;
  background-color: #fff !important;
  border: 2px solid rgba(106, 73, 242, 0.35) !important;
  border-radius: 1rem !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range:focus::-webkit-slider-thumb {
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 2px 10px rgba(0, 0, 0, 0.25) !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-thumb:active {
  background: #fff !important;
  background-color: #fff !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range::-moz-range-thumb {
  width: 1rem !important;
  height: 1rem !important;
  appearance: none !important;
  background: #fff !important;
  background-color: #fff !important;
  border: 2px solid rgba(106, 73, 242, 0.35) !important;
  border-radius: 1rem !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range:focus::-moz-range-thumb {
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 2px 10px rgba(0, 0, 0, 0.25) !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range::-moz-range-thumb:active {
  background: #fff !important;
  background-color: #fff !important;
}

#premium_select_block .pricing-tier-range-wrap .form-range::-ms-thumb {
  width: 1rem !important;
  height: 1rem !important;
  background: #fff !important;
  background-color: #fff !important;
  border: 2px solid rgba(106, 73, 242, 0.35) !important;
  border-radius: 1rem !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
}

/* --- Agency / Reseller: theme blue thumb + blue track (do not reuse Premium white rules) --- */
#agency_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-runnable-track {
  height: 0.5rem !important;
  background-color: rgba(43, 92, 253, 0.22) !important;
  border-radius: 1rem !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range::-moz-range-track {
  height: 0.5rem !important;
  background-color: rgba(43, 92, 253, 0.22) !important;
  border-radius: 1rem !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range {
  background: transparent !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-thumb {
  width: 1rem !important;
  height: 1rem !important;
  margin-top: -0.25rem !important;
  appearance: none !important;
  background: #2b5cfd !important;
  background-color: #2b5cfd !important;
  border: 2px solid #fff !important;
  border-radius: 1rem !important;
  box-shadow: 0 2px 8px rgba(43, 92, 253, 0.45) !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range:focus::-webkit-slider-thumb {
  background: #2b5cfd !important;
  background-color: #2b5cfd !important;
  box-shadow: 0 0 0 1px #fff, 0 0 6px rgba(43, 92, 253, 0.45) !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-thumb:active {
  background: #2b5cfd !important;
  background-color: #2b5cfd !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range::-moz-range-thumb {
  width: 1rem !important;
  height: 1rem !important;
  appearance: none !important;
  background: #2b5cfd !important;
  background-color: #2b5cfd !important;
  border: 2px solid #fff !important;
  border-radius: 1rem !important;
  box-shadow: 0 2px 8px rgba(43, 92, 253, 0.45) !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range:focus::-moz-range-thumb {
  background: #2b5cfd !important;
  background-color: #2b5cfd !important;
  box-shadow: 0 0 0 1px #fff, 0 0 6px rgba(43, 92, 253, 0.45) !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range::-moz-range-thumb:active {
  background: #2b5cfd !important;
  background-color: #2b5cfd !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range::-ms-thumb {
  width: 1rem !important;
  height: 1rem !important;
  background: #2b5cfd !important;
  background-color: #2b5cfd !important;
  border: 2px solid #fff !important;
  border-radius: 1rem !important;
  box-shadow: 0 2px 8px rgba(43, 92, 253, 0.45) !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range::-ms-fill-lower {
  background-color: rgba(43, 92, 253, 0.35) !important;
  border-radius: 1rem !important;
}

#agency_select_block .pricing-tier-range-wrap .form-range::-ms-fill-upper {
  background-color: rgba(43, 92, 253, 0.15) !important;
  border-radius: 1rem !important;
}

/* Align range track + thumb with tick labels (horizontal inset ≈ half thumb). */
.pricing_section .pricing-tier-range-wrap {
  width: 100%;
  /* padding-left: 0.5rem; */
  /* padding-right: 0.5rem; */
  box-sizing: border-box;
}

/* Tick labels under range: align to thumb stops (0 … 100%), not equal flex columns. */
.pricing_section .pricing-tier-range-values.pricing-tier-range-values--ticks {
  position: relative;
  display: block;
  width: 100%;
  min-height: 1.125rem;
  margin-top: 0.25rem;
}

.pricing_section .pricing-tier-range-values--ticks .pricing-tier-range-tick {
  position: absolute;
  top: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.pricing_section .pricing-tier-range-values--ticks .pricing-tier-range-tick:first-child {
  left: 0;
  transform: translateX(0);
  text-align: left;
}

.pricing_section .pricing-tier-range-values--ticks .pricing-tier-range-tick:last-child {
  left: 100%;
  transform: translateX(-100%);
  text-align: right;
}

.pricing_section .pricing-tier-range-values--ticks .pricing-tier-range-tick:not(:first-child):not(:last-child) {
  left: calc(100% * (var(--tick-idx) / var(--tick-max)));
  transform: translateX(-50%);
  text-align: center;
}

#premium_select_block .pricing-tier-range-values--ticks .message-credit-range-label {
  color: rgba(255, 255, 255, 0.78) !important;
}

.pricing_section .pricing-tier-slider-scale-title--premium {
  color: rgba(255, 255, 255, 0.75) !important;
}

.pricing_section .pricing-tier-slider-scale-title--agency {
  color: #64748b !important;
}

/* Plan card limits: body-sized bold (not h5); blue on Basic/Agency, white on Premium */
.pricing_section #basic_plan_block .pricing-plan-metric-value,
.pricing_section #agency_select_block .pricing-plan-metric-value {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #2563eb !important;
  line-height: 1.35;
}

.pricing_section #basic_plan_block .pricing-plan-metric-value .compare-unlimited,
.pricing_section #agency_select_block .pricing-plan-metric-value .compare-unlimited {
  color: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
}

.pricing_section #premium_select_block .pricing-plan-metric-value {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.35;
}

.pricing_section #premium_select_block .pricing-plan-metric-value .compare-unlimited {
  color: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
}

/* Popular (active) cards on /pricing/plan: Unlimited + metric values stay white */
.pricing_section .nk-pricing.active .pricing-plan-metric-value,
.pricing_section .nk-pricing.active .pricing-plan-metric-value .compare-unlimited,
.pricing_section .nk-pricing.active .pricing-plan-metric-value .text-dark,
.pricing_section .nk-pricing.active .pricing-plan-metric-value strong,
.pricing_section .nk-pricing.active .pricing-plan-metric-value a {
  color: #ffffff !important;
}

/* Compare table body: same body size for all tiers (validity had .small + looked smaller than limits). */
.pricing_section #pricing-compare .nk-compare tbody td .nk-compare-content .feature-text {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.pricing_section #pricing-compare .nk-compare tbody td .compare-validity-value {
  font-weight: 600 !important;
}

/* Horizontal scroll: Basic + all Pro cards in one row */
.pricing_section .pricing-plans-scroll-wrap {
  position: relative;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 1200px) {
  .pricing_section .pricing-plans-scroll-wrap {
    width: min(100vw - 2rem, 1480px);
    max-width: min(100vw - 2rem, 1480px);
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1400px) {
  .pricing_section .pricing-plans-scroll-wrap {
    width: min(100vw - 3rem, 1680px);
    max-width: min(100vw - 3rem, 1680px);
  }
}

.pricing_section .pricing-plans-scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 0.75rem;
  margin-inline: 0;
  padding-inline: 2.75rem;
  scrollbar-width: thin;
}

.pricing_section .pricing-plans-scroll::-webkit-scrollbar {
  height: 6px;
}

.pricing_section .pricing-plans-nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.pricing_section .pricing-plans-nav--prev {
  left: 0;
}

.pricing_section .pricing-plans-nav--next {
  right: 0;
}

.pricing_section .pricing-plans-nav:hover,
.pricing_section .pricing-plans-nav:focus-visible {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.2);
  outline: none;
}

.pricing_section .pricing-plans-nav:hover .nk-fcp-icon,
.pricing_section .pricing-plans-nav:focus-visible .nk-fcp-icon {
  fill: currentColor;
  color: inherit;
}

.pricing_section .pricing-plans-nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.pricing_section .pricing-plans-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  pointer-events: none;
}

.pricing_section .pricing-plans-nav-icon .nk-fcp-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.pricing_section .pricing-plans-nav-icon--prev {
  transform: scaleX(-1);
}

@media (min-width: 992px) {
  .pricing_section .pricing-plans-scroll {
    padding-inline: 3.25rem;
  }

  .pricing_section .pricing-plans-nav--prev {
    left: 0.15rem;
  }

  .pricing_section .pricing-plans-nav--next {
    right: 0.15rem;
  }
}

@media (min-width: 1200px) {
  .pricing_section .pricing-plans-nav {
    width: 3rem;
    height: 3rem;
  }
}

.pricing_section .pricing-plans-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  min-width: 100%;
}

.pricing_section .pricing-plan-card-col {
  flex: 0 0 21rem;
  width: 21rem;
  max-width: 21rem;
}

@media (min-width: 992px) {
  .pricing_section .pricing-plan-card-col {
    flex-basis: 22.05rem;
    width: 22.05rem;
    max-width: 22.05rem;
  }
}

@media (min-width: 1200px) {
  .pricing_section .pricing-plan-card-col {
    flex-basis: 23.1rem;
    width: 23.1rem;
    max-width: 23.1rem;
  }

  .pricing_section .pricing-plans-track {
    gap: 1.1rem;
  }
}

@media (min-width: 1400px) {
  .pricing_section .pricing-plan-card-col {
    flex-basis: 24.15rem;
    width: 24.15rem;
    max-width: 24.15rem;
  }
}

.pricing_section .pricing-plan-card-col .nk-pricing {
  min-height: 100%;
}

/* Compare table: same wide strip as plan cards */
.pricing_section .pricing-compare-scroll-wrap {
  position: relative;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 1200px) {
  .pricing_section .pricing-compare-scroll-wrap {
    width: min(100vw - 2rem, 1480px);
    max-width: min(100vw - 2rem, 1480px);
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 1400px) {
  .pricing_section .pricing-compare-scroll-wrap {
    width: min(100vw - 3rem, 1680px);
    max-width: min(100vw - 3rem, 1680px);
  }
}

.pricing_section #pricing-compare .pricing-compare-all-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.pricing_section #pricing-compare .pricing-compare-all-scroll table.table {
  table-layout: auto;
  width: max-content;
  min-width: 100%;
}

.pricing_section #pricing-compare .pricing-compare-all-scroll th.nk-compare-col.lg,
.pricing_section #pricing-compare .pricing-compare-all-scroll td.nk-compare-col.lg {
  position: sticky;
  left: 0;
  z-index: 3;
  /* Override theme .nk-compare-col.lg { width: 600px } */
  width: 16rem;
  min-width: 14rem;
  max-width: 18rem;
  background: var(--bs-body-bg, #fff);
  box-shadow: 6px 0 10px -8px rgba(15, 23, 42, 0.22);
}

.pricing_section #pricing-compare .pricing-compare-all-scroll th.nk-compare-col.active.lg,
.pricing_section #pricing-compare .pricing-compare-all-scroll td.nk-compare-col.active.lg {
  background: #eaefff;
}

.pricing_section #pricing-compare .pricing-compare-all-scroll th.nk-compare-col:not(.lg),
.pricing_section #pricing-compare .pricing-compare-all-scroll td.nk-compare-col:not(.lg) {
  min-width: 12rem;
  width: 12rem;
}

@media (min-width: 1200px) {
  .pricing_section #pricing-compare .pricing-compare-all-scroll th.nk-compare-col:not(.lg),
  .pricing_section #pricing-compare .pricing-compare-all-scroll td.nk-compare-col:not(.lg) {
    min-width: 14rem;
    width: 14rem;
  }
}

/* Tablet: keep sticky feature label readable without crowding plan cells */
@media (max-width: 991.98px) {
  .pricing_section #pricing-compare .pricing-compare-all-scroll th.nk-compare-col.lg,
  .pricing_section #pricing-compare .pricing-compare-all-scroll td.nk-compare-col.lg {
    width: 10rem;
    min-width: 9.5rem;
    max-width: 10.5rem;
    padding: 1rem 0.65rem !important;
  }

  .pricing_section #pricing-compare .pricing-compare-all-scroll th.nk-compare-col:not(.lg),
  .pricing_section #pricing-compare .pricing-compare-all-scroll td.nk-compare-col:not(.lg) {
    min-width: 10rem;
    width: 10rem;
    padding: 1rem 0.65rem !important;
  }

  .pricing_section #pricing-compare .pricing-compare-all-scroll thead .nk-compare-col {
    padding-top: 1.25rem !important;
  }
}

/* Mobile: slim sticky col so Basic/Pro values have usable viewport width */
@media (max-width: 767.98px) {
  .pricing_section #pricing-compare .pricing-compare-all-scroll th.nk-compare-col.lg,
  .pricing_section #pricing-compare .pricing-compare-all-scroll td.nk-compare-col.lg {
    width: 7rem;
    min-width: 6.75rem;
    max-width: 7.25rem;
    padding: 0.7rem 0.45rem !important;
  }

  .pricing_section #pricing-compare .pricing-compare-all-scroll th.nk-compare-col:not(.lg),
  .pricing_section #pricing-compare .pricing-compare-all-scroll td.nk-compare-col:not(.lg) {
    min-width: 8.75rem;
    width: 8.75rem;
    padding: 0.7rem 0.45rem !important;
  }

  .pricing_section #pricing-compare .pricing-compare-all-scroll .nk-compare-col.lg .lead,
  .pricing_section #pricing-compare .pricing-compare-all-scroll .nk-compare-col.lg .feature-text {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    word-break: break-word;
  }

  .pricing_section #pricing-compare .pricing-compare-all-scroll .nk-compare-col .overline-title {
    font-size: 0.7rem !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  .pricing_section #pricing-compare .pricing-compare-all-scroll thead .nk-compare-col {
    padding-top: 0.85rem !important;
  }
}

.pricing_section #pricing-compare .nk-compare-col.lg .lead {
  white-space: normal !important;
}

/* Duo layout: Basic smaller, Premium larger (existing primary blue) */
.pricing_section .pricing-cards-duo {
  --pricing-duo-gap: 1.25rem;
}

.pricing_section .pricing-card-basic .nk-pricing {
  box-shadow: 0 0.75rem 1.75rem rgba(15, 23, 42, 0.06);
}

.pricing_section .pricing-card-premium .nk-pricing.active {
  box-shadow: 0 1.25rem 2.5rem rgba(43, 92, 253, 0.22);
}

@media (min-width: 992px) {
  .pricing_section .pricing-cards-duo {
    align-items: stretch;
  }

  .pricing_section .pricing-card-basic {
    display: flex;
  }

  .pricing_section .pricing-card-basic .nk-pricing {
    width: 100%;
    align-self: center;
    max-width: 100%;
  }

  .pricing_section .pricing-card-premium .nk-pricing {
    min-height: 100%;
  }
}

@media (max-width: 767.98px) {
  .pricing_section .pricing-card-premium .nk-pricing.active {
    box-shadow: 0 1rem 2rem rgba(43, 92, 253, 0.18);
  }
}

/* Basic + Premium compare (no multi-pro horizontal strip) */
.pricing_section .pricing-compare-duo {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  transform: none;
}

.pricing_section .pricing-compare-duo .nk-compare table.table {
  table-layout: fixed;
  width: 100%;
  min-width: 0;
}

.pricing_section .pricing-compare-duo .nk-compare th.nk-compare-col.lg,
.pricing_section .pricing-compare-duo .nk-compare td.nk-compare-col.lg {
  width: 40%;
  min-width: 0;
  max-width: none;
  position: static;
  box-shadow: none;
}

.pricing_section .pricing-compare-duo .nk-compare th.nk-compare-col:not(.lg),
.pricing_section .pricing-compare-duo .nk-compare td.nk-compare-col:not(.lg) {
  width: 30%;
  min-width: 0;
}

.pricing_section .pricing-compare-duo .nk-compare th.nk-compare-col.active,
.pricing_section .pricing-compare-duo .nk-compare td.nk-compare-col.active {
  background: rgba(43, 92, 253, 0.06);
}

@media (max-width: 767.98px) {
  .pricing_section .pricing-compare-duo .nk-compare table.table {
    table-layout: auto;
    width: max-content;
    min-width: 100%;
  }

  .pricing_section .pricing-compare-duo .nk-compare th.nk-compare-col.lg,
  .pricing_section .pricing-compare-duo .nk-compare td.nk-compare-col.lg {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 7.5rem;
    min-width: 7rem;
    max-width: 8rem;
    background: var(--bs-body-bg, #fff);
    box-shadow: 6px 0 10px -8px rgba(15, 23, 42, 0.22);
  }

  .pricing_section .pricing-compare-duo .nk-compare th.nk-compare-col:not(.lg),
  .pricing_section .pricing-compare-duo .nk-compare td.nk-compare-col:not(.lg) {
    min-width: 8.5rem;
    width: 8.5rem;
  }
}

/* Trust bar (No setup fee / WhatsApp / Upgrade / Cancel) */
.pricing_section .pricing-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 2rem auto 0;
  padding: 1.15rem 0.5rem;
  max-width: 72rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1rem;
}

.pricing_section .pricing-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.15rem;
  min-width: 0;
}

.pricing_section .pricing-trust-bar__item + .pricing-trust-bar__item {
  border-left: 1px solid rgba(15, 23, 42, 0.1);
}

.pricing_section .pricing-trust-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--bs-primary, #2b5cfd);
}

.pricing_section .pricing-trust-bar__icon .nk-fcp-icon {
  width: 1.55rem;
  height: 1.55rem;
  color: inherit;
}

.pricing_section .pricing-trust-bar__icon img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.pricing_section .pricing-trust-bar__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.pricing_section .pricing-trust-bar__copy strong {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.pricing_section .pricing-trust-bar__copy span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .pricing_section .pricing-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.75rem;
    padding: 1.1rem 0.85rem;
  }

  .pricing_section .pricing-trust-bar__item,
  .pricing_section .pricing-trust-bar__item + .pricing-trust-bar__item,
  .pricing_section .pricing-trust-bar__item:nth-child(2n + 1),
  .pricing_section .pricing-trust-bar__item:nth-child(n + 3) {
    border: 0;
  }

  .pricing_section .pricing-trust-bar__item {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.35rem 0.5rem;
    text-align: center;
  }

  .pricing_section .pricing-trust-bar__copy {
    align-items: center;
  }

  .pricing_section .pricing-trust-bar__copy strong {
    font-size: 0.88rem;
  }

  .pricing_section .pricing-trust-bar__copy span {
    font-size: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .pricing_section .pricing-trust-bar {
    margin-top: 1.35rem;
    gap: 0.95rem 0.5rem;
    padding: 1rem 0.65rem;
    border-radius: 0.85rem;
  }

  .pricing_section .pricing-trust-bar__item {
    padding: 0.2rem 0.25rem;
    gap: 0.4rem;
  }

  .pricing_section .pricing-trust-bar__icon {
    width: 2rem;
    height: 2rem;
  }

  .pricing_section .pricing-trust-bar__icon img,
  .pricing_section .pricing-trust-bar__icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .pricing_section .pricing-trust-bar__icon .nk-fcp-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .pricing_section .pricing-trust-bar__copy strong {
    font-size: 0.8125rem;
  }

  .pricing_section .pricing-trust-bar__copy span {
    font-size: 0.7rem;
  }
}

/* Channel pills (same pattern as Visual Flow Builder hero) */
.pricing_section .pricing-duo-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.pricing_section .pricing-duo-channels .lp-hero-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.7rem 0.38rem 0.38rem;
  background: #fff;
  border: 1px solid #e4ebf5;
  border-radius: 999px;
  box-shadow: 0 0.35rem 0.9rem rgba(15, 23, 42, 0.05);
  color: #0b1220;
  font-size: 0.8125rem;
  font-weight: 700;
}

.pricing_section .pricing-duo-channels .lp-hero-channel.is-whatsapp {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.pricing_section .pricing-duo-channels .lp-hero-channel img {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .pricing_section .pricing-duo-channels .lp-hero-channel span {
    display: none;
  }
}

/* ===== Duo cards (Basic smaller + Premium larger) ===== */
.pricing_section .pricing-duo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 0.85rem 2rem rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.pricing_section .pricing-duo-card--basic {
  padding: 1.35rem 1.35rem 1.5rem;
}

@media (min-width: 1200px) {
  .pricing_section .pricing-duo-card--basic {
    padding: 1.6rem 1.6rem 1.75rem;
  }
}

.pricing_section .pricing-duo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.pricing_section .pricing-duo-badge--soft {
  background: rgba(43, 92, 253, 0.1);
  color: var(--bs-primary, #2b5cfd);
}

.pricing_section .pricing-duo-badge--light {
  background: #fff;
  color: var(--bs-primary, #2b5cfd);
}

.pricing_section .pricing-duo-badge--popular {
  background: #0f172a;
  color: #fbbf24;
}

.pricing_section .pricing-duo-title {
  margin: 0.9rem 0 0.25rem;
  font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}

.pricing_section .pricing-duo-price-line {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.pricing_section .pricing-duo-price-line strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.pricing_section .pricing-duo-intro {
  margin: 0 0 1.15rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing_section .pricing-duo-metrics {
  display: grid;
  gap: 0;
  margin-bottom: 1.25rem;
}

.pricing_section .pricing-duo-metrics li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 0.92rem;
}

.pricing_section .pricing-duo-metrics .nk-fcp-icon {
  color: var(--bs-primary, #2b5cfd);
  flex: 0 0 auto;
}

.pricing_section .pricing-duo-metrics strong {
  color: #0f172a;
  font-weight: 700;
}

.pricing_section .pricing-duo-actions {
  margin-top: auto;
}

.pricing_section .pricing-duo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 0.9rem;
}

.pricing_section .pricing-duo-links a {
  color: var(--bs-primary, #2b5cfd);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.pricing_section .pricing-duo-links a:hover {
  text-decoration: underline;
}

.pricing_section .pricing-duo-card--premium {
  box-shadow: 0 1.35rem 2.75rem rgba(43, 92, 253, 0.2);
  border-color: transparent;
}

.pricing_section .pricing-duo-card__hero {
  padding: 1.35rem 1.35rem 1.5rem;
  background: linear-gradient(135deg, #2b5cfd 0%, #5b8bff 100%);
  color: #fff;
}

@media (min-width: 1200px) {
  .pricing_section .pricing-duo-card__hero {
    padding: 1.6rem 1.75rem 1.75rem;
  }
}

.pricing_section .pricing-duo-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pricing_section .pricing-duo-card__hero-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}

.pricing_section .pricing-duo-card__hero-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing_section .pricing-duo-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.25rem 1.35rem 1.5rem;
  background: #fff;
}

@media (min-width: 1200px) {
  .pricing_section .pricing-duo-card__body {
    padding: 1.4rem 1.75rem 1.75rem;
    gap: 1.25rem;
  }
}

.pricing_section .pricing-duo-slider__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.pricing_section .pricing-duo-slider__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing_section .pricing-duo-slider__value {
  color: var(--bs-primary, #2b5cfd);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: right;
}

.pricing_section .pricing-duo-card--premium .pricing-tier-range-tick {
  color: #94a3b8;
}

/* Duo Premium body is white — override legacy dark-card white slider chrome */
.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-slider-slot--active {
  padding-top: 0.35rem;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-runnable-track {
  background-color: rgba(43, 92, 253, 0.18) !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range::-moz-range-track {
  background-color: rgba(43, 92, 253, 0.18) !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-thumb {
  background: var(--bs-primary, #2b5cfd) !important;
  background-color: var(--bs-primary, #2b5cfd) !important;
  border: 2px solid #fff !important;
  box-shadow: 0 2px 10px rgba(43, 92, 253, 0.35) !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range:focus::-webkit-slider-thumb {
  background: var(--bs-primary, #2b5cfd) !important;
  background-color: var(--bs-primary, #2b5cfd) !important;
  box-shadow: 0 0 0 3px rgba(43, 92, 253, 0.25), 0 2px 10px rgba(43, 92, 253, 0.35) !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range::-webkit-slider-thumb:active {
  background: var(--bs-primary, #2b5cfd) !important;
  background-color: var(--bs-primary, #2b5cfd) !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range::-moz-range-thumb {
  background: var(--bs-primary, #2b5cfd) !important;
  background-color: var(--bs-primary, #2b5cfd) !important;
  border: 2px solid #fff !important;
  box-shadow: 0 2px 10px rgba(43, 92, 253, 0.35) !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range:focus::-moz-range-thumb {
  background: var(--bs-primary, #2b5cfd) !important;
  background-color: var(--bs-primary, #2b5cfd) !important;
  box-shadow: 0 0 0 3px rgba(43, 92, 253, 0.25), 0 2px 10px rgba(43, 92, 253, 0.35) !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range::-moz-range-thumb:active {
  background: var(--bs-primary, #2b5cfd) !important;
  background-color: var(--bs-primary, #2b5cfd) !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-wrap .form-range::-ms-thumb {
  background: var(--bs-primary, #2b5cfd) !important;
  background-color: var(--bs-primary, #2b5cfd) !important;
  border: 2px solid #fff !important;
}

.pricing_section .pricing-duo-card--premium #premium_select_block .pricing-tier-range-values--ticks .message-credit-range-label {
  color: #64748b !important;
}

.pricing_section .pricing-duo-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.15rem;
  margin: 0.15rem 0 0.25rem;
  min-height: 4.5rem;
}

.pricing_section .pricing-duo-price__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin: 0;
}

/* No empty discount row — parent min-height keeps price centered */
.pricing_section .pricing-duo-price__meta:not(:has(:not(.d-none))) {
  display: none;
}

.pricing_section .pricing-duo-price__meta del {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing_section .pricing-duo-off {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #ffe4e6;
  color: #e11d48;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pricing_section .pricing-duo-price__row {
  display: inline-flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center !important;
  gap: 0.4rem;
  margin: 0;
  line-height: 1;
}

.pricing_section .pricing-duo-price__amount {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
  line-height: 1 !important;
}

.pricing_section .pricing-duo-price__sep,
.pricing_section .pricing-duo-price__period {
  display: inline-flex;
  align-items: center;
  color: #64748b;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1 !important;
}

.pricing_section .pricing-duo-price__note {
  margin: 0;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.2;
}

.pricing_section .pricing-duo-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem 1rem;
}

@media (min-width: 576px) {
  .pricing_section .pricing-duo-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .pricing_section .pricing-duo-feature-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.pricing_section .pricing-duo-feature-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.35;
}

.pricing_section .pricing-duo-feature-grid .nk-fcp-icon {
  color: var(--bs-primary, #2b5cfd);
  flex: 0 0 auto;
  margin-top: 0.1rem;
}

.pricing_section .pricing-duo-feature-grid strong {
  color: #0f172a;
}

.pricing_section .pricing-duo-foot {
  margin-top: 0.85rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.8rem;
}

.pricing_section .pricing-duo-foot a {
  color: var(--bs-primary, #2b5cfd);
  font-weight: 600;
  text-decoration: none;
}

.pricing_section .pricing-duo-foot a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .pricing_section .pricing-card-basic {
    display: flex;
  }

  .pricing_section .pricing-card-basic .pricing-duo-card {
    align-self: center;
    width: 100%;
  }
}
