/* =========================================================
   BLINKFLUENCE PRICING
   PREMIUM BLACK / ORANGE THEME
========================================================= */

.bfpp-wrap,
.bfpp-modal {
    font-family: inherit;
    box-sizing: border-box;
}

.bfpp-wrap *,
.bfpp-modal * {
    box-sizing: border-box;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.bfpp-wrap {
    width: 100%;
    padding: 5px 0 25px;
    color: #111;
}


/* =========================================================
   HEADER
========================================================= */

.bfpp-head {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 18px;
}

.bfpp-kicker {
    display: inline-block;
    margin-bottom: 6px;
    padding: 5px 10px;
    border-radius: 30px;
    background: #fff1ea;
    color: #ff4b00;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
}

.bfpp-head h2 {
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #090909 !important;
    font-size: clamp(27px, 3vw, 40px) !important;
    line-height: 1.02 !important;
    font-weight: 700 !important;
    letter-spacing: -.035em;
}

.bfpp-head p {
    max-width: 540px;
    margin: 0 !important;
    padding-left: 10px;
    border-left: 2px solid #ff4b00;
    color: #666;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   MONTHLY / YEARLY
========================================================= */

.bfpp-toggle {
    flex-shrink: 0;
    display: flex;
    padding: 3px;
    border: 1px solid #dcdcdc;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,.04);
}

.bfpp-period-btn {
    min-width: 62px;
    height: 27px;
    padding: 0 10px;
    border: 0 !important;
    border-radius: 20px !important;
    background: transparent !important;
    color: #333 !important;
    font-size: 9px !important;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none !important;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.bfpp-period-btn:hover {
    color: #ff4b00 !important;
}

.bfpp-period-btn.active {
    background: #ff4b00 !important;
    color: #fff !important;
}


/* =========================================================
   CARDS
========================================================= */

.bfpp-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.bfpp-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 11px;
    border: 1px solid #dedede;
    border-radius: 11px;
    background: #fff;
    overflow: hidden;

    transition:
        transform .25s cubic-bezier(.2,.8,.2,1),
        border-color .25s ease,
        box-shadow .25s ease;
}

.bfpp-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background: #ff4b00;

    transition: width .3s ease;
}

.bfpp-card:hover {
    border-color: #cfcfcf;
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.bfpp-card:hover::before {
    width: 100%;
}


/* =========================================================
   CARD HEADER
========================================================= */

.bfpp-card-title {
    margin-bottom: 10px;
    padding: 14px 13px;
    border-radius: 8px;
    background: #0a0a0a;
    color: #fff;

    transition:
        background .25s ease,
        transform .25s ease;
}

.bfpp-card:nth-child(2) .bfpp-card-title {
    background: #171717;
}

.bfpp-card:nth-child(3) .bfpp-card-title {
    background: #0a0a0a;
}

.bfpp-card:nth-child(4) .bfpp-card-title {
    background: linear-gradient(
        135deg,
        #111 0%,
        #171717 100%
    );
}

.bfpp-card:hover .bfpp-card-title {
    background: #ff4b00;
}

.bfpp-card-title h3 {
    margin: 0 0 7px !important;
    color: #fff !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.bfpp-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.bfpp-price-number {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.025em;
}

.bfpp-price-period {
    color: #cfcfcf;
    font-size: 8px;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.bfpp-list {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.bfpp-list li {
    display: grid;
    grid-template-columns: 10px 1fr 12px;
    align-items: center;
    gap: 5px;
    min-height: 25px;
    margin: 0 !important;
    padding: 0 !important;
    color: #4b4b4b;
    font-size: 8px;
    line-height: 1.2;

    transition:
        color .2s ease,
        transform .2s ease;
}

.bfpp-list li:hover {
    color: #111;
    transform: translateX(2px);
}

.bfpp-check {
    color: #ff4b00;
    font-weight: 800;
}

.bfpp-service-text {
    min-width: 0;
}

.bfpp-info {
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #aaa;
    border-radius: 50%;
    color: #777;
    font-size: 6px;

    transition:
        border-color .2s ease,
        color .2s ease,
        background .2s ease;
}

.bfpp-list li:hover .bfpp-info {
    border-color: #ff4b00;
    color: #ff4b00;
}


/* =========================================================
   CLIENT PANEL NOTE
========================================================= */

.bfpp-client-note {
    min-height: 38px;
    margin: 9px 0;
    padding: 7px 8px;
    border-radius: 7px;

    background: #f6f6f6;
    color: #555;

    font-size: 7px;
    line-height: 1.35;

    transition:
        background .2s ease,
        color .2s ease;
}

.bfpp-card:hover .bfpp-client-note {
    background: #fff2ec;
    color: #c53c00;
}


/* =========================================================
   BUTTONS
========================================================= */

.bfpp-card-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.bfpp-start-btn,
.bfpp-wa-btn {
    width: 100%;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 6px;
    font-size: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


/* GET STARTED */

.bfpp-start-btn {
    border: 1px solid #0b0b0b !important;
    background: #0b0b0b !important;
    color: #fff !important;
}

.bfpp-start-btn:hover {
    border-color: #ff4b00 !important;
    background: #ff4b00 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(255,75,0,.18);
}


/* WHATSAPP */

.bfpp-wa-btn {
    border: 1px solid #20c968;
    background: #20c968;
    color: #fff;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.bfpp-wa-btn:hover {
    border-color: #16b75b;
    background: #16b75b;
    color: #fff;
    transform: translateY(-1px);
}


/* =========================================================
   MODAL
   BLACK + ORANGE THEME
========================================================= */

.bfpp-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.bfpp-modal.bfpp-open {
    display: flex !important;
}

.bfpp-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.78);

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.bfpp-modal-container {
    position: relative;
    z-index: 2;

    width: min(650px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);

    overflow-y: auto;

    padding: 20px 24px 17px;

    border: 1px solid #292929;
    border-radius: 18px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,75,0,.07),
            transparent 35%
        ),
        #080808;

    color: #fff;

    box-shadow:
        0 30px 100px rgba(0,0,0,.8);
}

.bfpp-modal-container::-webkit-scrollbar {
    width: 5px;
}

.bfpp-modal-container::-webkit-scrollbar-track {
    background: #0c0c0c;
}

.bfpp-modal-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}


/* =========================================================
   MODAL CLOSE
========================================================= */

.bfpp-modal-close {
    position: absolute !important;
    top: 10px;
    right: 11px;
    z-index: 10;

    width: 35px !important;
    height: 35px !important;

    padding: 0 !important;

    border: 1px solid #333 !important;
    border-radius: 50% !important;

    background: #111 !important;
    color: #fff !important;

    font-size: 23px !important;
    line-height: 1 !important;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.bfpp-modal-close:hover {
    border-color: #ff4b00 !important;
    background: #ff4b00 !important;
    transform: rotate(90deg);
}


/* =========================================================
   MODAL HEADER
========================================================= */

.bfpp-modal-top {
    padding-right: 45px;
    margin-bottom: 10px;
}

.bfpp-modal-top > span {
    display: block;
    margin-bottom: 4px;

    color: #ff4b00;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .03em;
}

.bfpp-modal-top h2 {
    margin: 0 0 5px !important;

    color: #fff !important;

    font-size: 29px !important;
    line-height: 1.05 !important;
    font-weight: 500 !important;
}

.bfpp-modal-top p {
    margin: 0 !important;
    color: #888;
    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   SELECTED PACKAGE
========================================================= */

.bfpp-selected-package {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
    margin-bottom: 9px;
    padding: 9px 13px;

    border: 1px solid rgba(255,75,0,.65);
    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            rgba(255,75,0,.08),
            rgba(255,75,0,.025)
        );
}

.bfpp-selected-left small {
    display: block;
    margin-bottom: 2px;
    color: #777;
    font-size: 8px;
}

.bfpp-selected-left strong {
    color: #fff;
    font-size: 14px;
}

.bfpp-selected-right {
    display: flex;
    align-items: baseline;
    gap: 3px;
    white-space: nowrap;
}

.bfpp-selected-right strong {
    color: #ff4b00;
    font-size: 22px;
}

.bfpp-selected-right span {
    color: #888;
    font-size: 9px;
}


/* =========================================================
   INCLUDED SERVICES
========================================================= */

.bfpp-included {
    margin-bottom: 8px;
}

.bfpp-included label {
    display: block;
    margin-bottom: 4px;
    color: #999;
    font-size: 8px;
    font-weight: 800;
}

.bfpp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.bfpp-tag {
    display: inline-flex;
    align-items: center;

    padding: 5px 7px;

    border: 1px solid #2d2d2d;
    border-radius: 5px;

    background: #151515;
    color: #ddd;

    font-size: 8px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.bfpp-tag:hover {
    border-color: #ff4b00;
    background: #1b120e;
}


/* =========================================================
   FORM
========================================================= */

.bfpp-form {
    margin: 0;
    padding: 0;
}

.bfpp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.bfpp-input-group {
    margin-bottom: 7px;
}

.bfpp-input-group label {
    display: block;
    margin-bottom: 3px;

    color: #ddd;

    font-size: 8px;
    font-weight: 600;
}

.bfpp-input-group label b {
    color: #ff4b00;
}

.bfpp-input-group label span {
    color: #666;
    font-weight: 400;
}

.bfpp-input-group input {
    display: block;

    width: 100% !important;
    height: 36px !important;
    min-height: 36px !important;

    margin: 0 !important;
    padding: 7px 10px !important;

    border: 1px solid #303030 !important;
    border-radius: 6px !important;

    outline: none !important;

    background: #101010 !important;
    color: #fff !important;

    font-size: 10px !important;

    box-shadow: none !important;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.bfpp-input-group input::placeholder {
    color: #555 !important;
}

.bfpp-input-group input:focus {
    border-color: #ff4b00 !important;
    background: #121212 !important;

    box-shadow:
        0 0 0 1px rgba(255,75,0,.12) !important;
}

.bfpp-input-group input.bfpp-invalid {
    border-color: #ff4b00 !important;
}


/* =========================================================
   SUBMIT
========================================================= */

.bfpp-submit {
    width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    margin: 2px 0 0 !important;

    padding: 4px 5px 4px 13px !important;

    border: 0 !important;
    border-radius: 6px !important;

    background: #ff4b00 !important;
    color: #fff !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    cursor: pointer;

    box-shadow: none !important;

    transition:
        background .2s ease,
        box-shadow .2s ease;
}

.bfpp-submit:hover {
    background: #ff5b18 !important;

    box-shadow:
        0 8px 22px rgba(255,75,0,.2);
}

.bfpp-submit b {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: #fff;
    color: #111;

    font-size: 15px;
}

.bfpp-submit:disabled {
    opacity: .6;
    cursor: wait;
}


/* =========================================================
   MESSAGE
========================================================= */

.bfpp-form-message {
    min-height: 13px;
    margin-top: 5px;

    color: #8cffb3;

    font-size: 8px;
    line-height: 1.35;
}


/* =========================================================
   BOT FIELD
========================================================= */

.bfpp-bot-field {
    position: absolute !important;
    left: -99999px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;
    pointer-events: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .bfpp-cards {
        grid-template-columns: repeat(
            2,
            minmax(0, 1fr)
        );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .bfpp-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .bfpp-cards {
        grid-template-columns: 1fr;
    }

    .bfpp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bfpp-modal {
        padding: 7px;
    }

    .bfpp-modal-container {
        width: calc(100vw - 14px);
        max-height: calc(100vh - 14px);

        padding: 17px 14px 14px;

        border-radius: 14px;
    }

    .bfpp-modal-top h2 {
        font-size: 24px !important;
    }

    .bfpp-selected-package {
        padding: 8px 10px;
    }

    .bfpp-selected-right strong {
        font-size: 18px;
    }

}