/* כותרות הטאבים */
.plans-tab-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}
.plans-tab-nav li {
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(0,123,255,.4); /* כחול עדין */
    color: #ffffff;
    border-radius: 999px;
    padding: .8rem 1.4rem;
    font-size: .95rem;
    line-height: 1.2;
    transition: all .2s ease;
    text-align: center;
    min-width: max-content;
}
.plans-tab-nav li.active-tab {
    background: rgba(0,123,255,.15);
    box-shadow: 0 0 20px rgba(0,123,255,.4);
    border-color: rgba(0,123,255,1);
    color: #ffffff;
}

/* עיצוב התוכן של כל טאב */
.plans-tab-content {
    display: none;
}
.plans-tab-content.active {
    display: block;
}

/* הקופסה של כל חבילה */
.plan-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.25rem;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* גרסה מודגשת (האמצעית) */
.plan-card-featured {
    border-color: rgba(0,123,255,.6);
    box-shadow: 0 30px 80px rgba(0,123,255,0.25);
}

/* כותרת החבילה */
.plan-head {
    margin-bottom: 1rem;
    text-align: right;
}
.plan-title-row {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
}
.plan-tier {
    color: #fff;
    font-weight: 600;
}
.plan-sub {
    font-size: .9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
    margin-top: .4rem;
}

/* רשימת היתרונות */
.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    font-size: .9rem;
    line-height: 1.6;
    color: #fff;
}
.plan-list li {
    position: relative;
    display: flex;
    justify-content: space-between;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: .5rem 0;
    gap: .5rem;
}
.plan-list li:last-child {
    border-bottom: 0;
}
.plan-list .check {
    color: #007bff;
    font-weight: 600;
    flex-shrink: 0;
    margin-inline-start: .5rem;
}

/* כפתור CTA */
.plan-cta {
    background: #0056ff;
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.2;
    padding: .9rem 1rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,86,255,0.45);
    transition: all .15s ease;
    direction: rtl;            /* כבר היה אצלנו, משאירים */
    display: flex;             /* ניישר טקסט וחץ ביחד */
    align-items: center;
    justify-content: center;
    gap: .4rem;                /* ריווח בין הטקסט לחץ */
}

.plan-cta .arrow {
    font-weight: 600;
    line-height: 1;
    display: inline-block;
}

.plan-cta:hover {
    background: #1a66ff;
    box-shadow: 0 30px 60px rgba(0,86,255,0.6);
}

/* רספונסיביות */
@media (min-width: 992px) {
    .plan-card {
        padding: 2rem 2rem 1.5rem;
    }
    .plan-title-row {
        font-size: 1.15rem;
    }
}


