/* Plans Page Styles */
.plans-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.plans-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.plans-hero p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}

.section-title {
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

/* Premium Plan Card */
.plan-card {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    border-color: #cbd5e1;
}

.plan-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.plan-header h5 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.plan-price {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.plan-price-small {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
    display: block;
    margin-top: 0.25rem;
}

.plan-body {
    padding: 2.5rem 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.plan-description {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: center;
}

.plan-details-text {
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.plan-promo-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.plan-promo {
    background: #f0fdf4;
    color: #166534;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #bbf7d0;
}

.plan-footer {
    padding: 0 2rem 2.5rem;
    background: #ffffff;
    border: none;
    text-align: center;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
}

/* Gradients for different card types */
.theme-primary .plan-header { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.theme-primary .plan-btn { background: #3b82f6; color: white; }
.theme-primary .plan-btn:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4); color: white;}

.theme-success .plan-header { background: linear-gradient(135deg, #10b981, #047857); }
.theme-success .plan-btn { background: #10b981; color: white; }
.theme-success .plan-btn:hover { background: #047857; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4); color: white;}

.theme-warning .plan-header { background: linear-gradient(135deg, #f59e0b, #b45309); }
.theme-warning .plan-btn { background: #f59e0b; color: white; }
.theme-warning .plan-btn:hover { background: #b45309; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4); color: white;}

.theme-info .plan-header { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.theme-info .plan-btn { background: #0ea5e9; color: white; }
.theme-info .plan-btn:hover { background: #0369a1; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.4); color: white;}

.theme-purple .plan-header { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.theme-purple .plan-btn { background: #8b5cf6; color: white; }
.theme-purple .plan-btn:hover { background: #6d28d9; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.4); color: white;}

.theme-secondary .plan-header { background: linear-gradient(135deg, #64748b, #334155); }
.theme-secondary .plan-btn { background: #64748b; color: white; }
.theme-secondary .plan-btn:hover { background: #334155; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(100, 116, 139, 0.4); color: white;}

.theme-dark .plan-header { background: linear-gradient(135deg, #334155, #0f172a); }
.theme-dark .plan-btn { background: #334155; color: white; }
.theme-dark .plan-btn:hover { background: #0f172a; transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(51, 65, 85, 0.4); color: white;}
