.psp-front {
    width: 100%;
    direction: rtl;
    font-family:"IRANSansWebFaNum" !important;
}

.psp-front,
.psp-front *,
.psp-front *::before,
.psp-front *::after {
    box-sizing: border-box;
}

.psp-front__wrap {
    margin: 0 auto;
    padding: 40px 20px;
    background: #f8faf8;
    border: 2px dashed #008100;
    border-radius: 24px;
    overflow: hidden;
}

.psp-front__head {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
}

.psp-front__leaf {
    width: 34px;
    height: 34px;
    margin: 0 auto 12px;
    color: #1f7a3f;
}

.psp-front__leaf svg {
    display: block;
    width: 100%;
    height: 100%;
}

.psp-front__title {
    margin: 0 0 12px;
    color: #1f7a3f;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
}

.psp-front__subtitle {
    margin: 0;
    color: #6c7a70;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
}

.psp-front__divider {
    width: 60px;
    height: 3px;
    margin: 15px auto 0;
    background: #1f7a3f;
    border-radius: 10px;
}

.psp-front__grid {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 58px;
    direction: rtl;
    isolation: isolate;
}

.psp-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 260px;
    flex-direction: column;
    width: 260px;
    min-width: 0;
    padding: 35px 20px 25px;
    background: #fff;
    border: 1px solid rgba(31, 122, 63, 0.06);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.psp-step:not(:first-child)::after {
    content: "<<<<<<<";
    position: absolute;
    top: 74px;
    right: -58px;
    z-index: 3;
    width: 58px;
    color: #1f7a3f;
    direction: ltr;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    text-align: center;
    opacity: 0.75;
}

.psp-step:not(:first-child)::before {
    display: none;
}

.psp-step__badge {
    position: absolute;
    z-index: 5;
    top: -15px;
    right: -3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: #fff;
    background: rgb(251, 87, 32);
    border: 5px solid #f8faf8;
    border-radius: 50%;
    box-shadow:
        0 5px 15px rgba(31, 122, 63, 0.2),
        0 0 0 1px rgba(31, 122, 63, 0.08);
    font-size: 18px;
    font-weight: 900;
}

.psp-step__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.psp-step__iconRing {
    position: absolute;
    inset: 0;
    background: #eaf4ec;
    border-radius: 50%;
    box-shadow:
        0 0 0 5px rgba(234, 244, 236, 0.6),
        0 7px 20px rgba(31, 122, 63, 0.08);
}

.psp-step__iconSvg {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.psp-step__iconSvg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.psp-step__title {
    margin: 0 0 12px;
    color: #333;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.6;
}

.psp-step__desc {
    margin-bottom: 20px;
    color: #6c7a70;
    font-size: 14px;
    line-height: 1.8;
}

.psp-step__desc p {
    margin: 0;
}

.psp-step__time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding-top: 15px;
    color: #1f7a3f;
    border-top: 1px solid #f0f3f1;
    font-size: 14px;
    font-weight: 800;
}

.psp-step__clock {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.psp-step__clock::before {
    content: "";
    position: absolute;
    top: 3px;
    left: calc(50% - 1px);
    width: 2px;
    height: 5px;
    background: currentColor;
    border-radius: 2px;
}

.psp-step__clock::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transform: rotate(25deg);
    transform-origin: left center;
}

@media (min-width: 1181px) {
    .psp-step:not(:last-child) .psp-step__icon::before {
        display: none;
    }
}

@media (max-width: 1180px) {
    .psp-front__wrap {
        padding: 40px 24px;
    }

    .psp-front__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(240px, 300px));
        gap: 42px 28px;
    }

    .psp-step {
        width: 100%;
        flex-basis: auto;
    }

    .psp-step:not(:first-child)::after,
    .psp-step:not(:first-child)::before,
    .psp-step__icon::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .psp-front__wrap {
        padding: 32px 16px;
        border-radius: 18px;
    }

    .psp-front__head {
        margin-bottom: 42px;
    }

    .psp-front__title {
        font-size: 28px;
    }

    .psp-front__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 34px;
    }

    .psp-step {
        width: 100%;
        max-width: 340px;
    }

    .psp-step:not(:first-child)::after,
    .psp-step:not(:first-child)::before {
        display: none;
    }

    .psp-step__badge {
        right: 8px;
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}
.cta-order-box {
    direction: rtl;
    margin: 30px 0;
    font-family:"IRANSansWebFaNum" !important;
}

.cta-order-box * {
    box-sizing: border-box;
}

.cta-order-box__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 26px 34px;
    background: #fff;
    border: 1px solid #e8ece8;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.cta-order-box__text {
    flex: 1 1 auto;
    text-align: right;
}

.cta-order-box__text h2 {
    margin: 0 0 10px;
    color: #2f2f2f;
    font-size: 22px !important;
    font-weight: 700;
    line-height: 1.8;
}

.cta-order-box__text p {
    margin: 0;
    color: #6f6f6f;
    font-size: 16px;
    line-height: 1.9;
}

.cta-order-box__icon {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-order-box__icon svg {
    width: 84px;
    height: 84px;
    display: block;
}

.cta-order-box__button {
    flex: 0 0 490px;
    max-width: 490px;
    min-height: 74px;
    padding: 18px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    background: linear-gradient(180deg, #1fad34 0%, #15952b 100%);
    border-radius: 18px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    box-shadow: 0 10px 24px rgba(21, 149, 43, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-order-box__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(21, 149, 43, 0.28);
}

.cta-order-box__button-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cta-order-box__button-icon span{
    font-size:18px !important;
}
.cta-order-box__button-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

@media (max-width: 1200px) {
    .cta-order-box__content {
        gap: 20px;
        padding: 22px 24px;
    }

    .cta-order-box__button {
        flex-basis: 380px;
        max-width: 380px;
        font-size: 24px;
    }

    .cta-order-box__text h2 {
        font-size: 22px;
    }

    .cta-order-box__text p {
        font-size: 16px;
    }
}

@media (max-width: 860px) {
    .cta-order-box__content {
        flex-direction: column;
        text-align: center;
    }

    .cta-order-box__text {
        text-align: center;
    }

    .cta-order-box__button {
        width: 100%;
        max-width: 100%;
        flex-basis: auto;
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .cta-order-box__content {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .cta-order-box__text h2 {
        font-size: 18px;
        line-height: 1.9;
    }

    .cta-order-box__text p {
        font-size: 14px;
    }

    .cta-order-box__icon {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
    }

    .cta-order-box__icon svg {
        width: 70px;
        height: 70px;
    }

    .cta-order-box__button {
        min-height: 58px;
        padding: 14px 16px;
        border-radius: 14px;
        font-size: 17px;
        gap: 10px;
    }

    .cta-order-box__button-icon,
    .cta-order-box__button-icon svg {
        width: 22px;
        height: 22px;
    }
}
