.most-popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #1e3a8a;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.call-button {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #66bb6a;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.call-button:hover {
    background: #c8e6c9;
}

.price-section {
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 8px;
}

.currency {
    font-size: 18px;
    color: #64748b;
}

.amount {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
}

.period {
    font-size: 14px;
    color: #94a3b8;
}

.payment-info {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 5px;
}

.discount-info {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 3px;
}

.features-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 25px 0;
}

.features-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.features-list.table {
    list-style: none;
}

.feature-itemtable {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.new-badge {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.gift-badge {
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.cta-button {
    width: 100%;
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1e40af;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

