/* עיצוב עמוד התמחור */
.pricing-page {
    min-height: 100vh;
    padding-top: 6rem;
}

.pricing-hero {
    text-align: center;
    padding: 2rem 0 2.5rem;
}

.pricing-hero h1 {
    font-size: 2.8rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.pricing-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* גריד כרטיסי המחירים */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    /* רווח מוקטן יותר */
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 0 3rem;
    perspective: 1000px;
    align-items: stretch;
    /* גובה אחיד */
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    transform: none;
    z-index: 1;
}

/* כרטיס שמאלי */
.pricing-card:nth-child(1) {
    transform: rotateY(4deg);
    transform-origin: right center;
}

/* כרטיס ימני */
.pricing-card:nth-child(3) {
    transform: rotateY(-4deg);
    transform-origin: left center;
}

/* הסרת אנימציות ריחוף */
.pricing-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-200);
    z-index: 5;
}

.pricing-card.featured {
    background: #ffffff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
    z-index: 2;
    transform: none;
    padding: 2.2rem 1.2rem;
    /* פדינג גבוה יותר להגדלת הגובה */
    margin-top: -10px;
    /* תוספת עומק כלפי מעלה */
    margin-bottom: -10px;
    /* תוספת עומק כלפי מטה */
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.2);
}


/* תגית מומלץ */
.popular-badge {
    position: absolute;
    top: 15px;
    left: -35px;
    background: var(--grad-primary);
    color: white;
    text-align: center;
    width: 140px;
    padding: 6px 0;
    font-weight: 600;
    font-size: 0.75rem;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.pricing-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* אזור המחיר */
.price-container {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid rgba(33, 150, 243, 0.05);
}

.original-price {
    font-size: 0.95rem;
    color: #b0bec5;
    text-decoration: line-through;
    margin-bottom: 0.2rem;
    display: block;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin: 0.2rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* תגית חיסכון */
.savings-badge {
    display: inline-block;
    background: #e3f2fd;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.6rem;
    border: 1px solid var(--blue-100);
}

/* רשימת תכונות */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list .check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 800;
}

/* כפתורי פעולה */
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.pricing-btn.primary {
    background: var(--grad-primary);
    color: white;
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
}

.pricing-btn.secondary {
    background: #f8fbff;
    color: var(--primary-color);
    border: 2px solid var(--blue-100);
}

.pricing-btn.secondary:hover {
    background: white;
    border-color: var(--primary-color);
}

/* שאלות נפוצות */
.faq-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(227, 242, 253, 0.3) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* רספונסיבי */
/* רספונסיבי */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 2rem 1rem;
        perspective: none;
        /* ביטול תלת מימד במובייל */
    }

    .pricing-card,
    .pricing-card:nth-child(1),
    .pricing-card:nth-child(3),
    .pricing-card.featured {
        transform: none !important;
        /* איפוס כל הטרנספורמציות */
        margin-bottom: 1.5rem;
    }

    .pricing-card:hover,
    .pricing-card.featured:hover {
        transform: translateY(-5px) !important;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.2rem;
    }

    .current-price {
        font-size: 2.2rem;
    }
}